Skip to content

Commit

Permalink
Merge pull request jean-merelis#22 from jean-merelis/bump-version
Browse files Browse the repository at this point in the history
bump version
  • Loading branch information
jean-merelis authored Jun 29, 2017
2 parents 8c12c6f + 7a78db2 commit 82bde25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,14 @@ Download from Maven central
<dependency>
<groupId>com.github.jean-merelis</groupId>
<artifactId>coffeepot-br-sped-fiscal</artifactId>
<version>1.0.0-Beta.5</version>
<version>1.0.0-Beta.7</version>
</dependency>
```

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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>com.github.jean-merelis</groupId>
<artifactId>coffeepot-br-sped-fiscal</artifactId>
<version>1.0.0-Beta.7</version>
<version>1.0.0-Beta.8</version>
<packaging>jar</packaging>
<description>
Project to be used in Brazil to write file in accordance to local regulations.
Expand Down

0 comments on commit 82bde25

Please sign in to comment.