From 7a78db210c63e6dbced2b2179cef97b8ef50d0ae Mon Sep 17 00:00:00 2001 From: "Jeandeson O. Merelis" Date: Thu, 29 Jun 2017 20:13:12 -0300 Subject: [PATCH] bump version --- README.md | 8 +++----- pom.xml | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4c76371..20a6f31 100644 --- a/README.md +++ b/README.md @@ -21,15 +21,14 @@ Download from Maven central com.github.jean-merelis coffeepot-br-sped-fiscal - 1.0.0-Beta.5 + 1.0.0-Beta.7 ``` Exemplo escrevendo registro a registro no arquivo: ```java //Criando o escritor do Sped Fiscal -Writer fw = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file), "ISO-8859-1")); -SpedFiscalWriter spedFiscalWriter = new SpedFiscalWriter(fw); +SpedFiscalWriter spedFiscalWriter = new SpedFiscalWriter(file); Reg0000 reg = new Reg0000(); //atribui os dados do registro @@ -53,8 +52,7 @@ Exemplo escrevendo um bloco inteiro no arquivo: ```java //Criando o escritor do Sped Fiscal -Writer fw = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file), "ISO-8859-1")); -SpedFiscalWriter spedFiscalWriter = new SpedFiscalWriter(fw); +SpedFiscalWriter spedFiscalWriter = new SpedFiscalWriter(file); Bloco0 bloco0 = new Bloco0(); //atribui os registros do bloco diff --git a/pom.xml b/pom.xml index 0f04f6d..08d5568 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ com.github.jean-merelis coffeepot-br-sped-fiscal - 1.0.0-Beta.7 + 1.0.0-Beta.8 jar Project to be used in Brazil to write file in accordance to local regulations.