Skip to content

Commit

Permalink
Tagging 1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcashman committed Dec 2, 2022
1 parent aa34c2b commit 8934a87
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
[1.11.0]
- (#10) Fix parsing of empty comment lines
- (#9) Return source string for empty translation
- Separate extractor into separate library + application

[1.10.4]
- Implement optional binary format for PoFiles

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ Javadoc can be found [here](https://mini2dx.github.io/gettext/javadoc/1.5.0/inde

__Gradle__
```gradle
compile "org.mini2Dx:gettext-lib:1.10.3"
compile "org.mini2Dx:gettext-lib:1.11.0"
```

__Maven__
```xml
<dependency>
<groupId>org.mini2Dx</groupId>
<artifactId>gettext-lib</artifactId>
<version>1.10.3</version>
<version>1.11.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def mavenProjects() {
subprojects.findAll { !it.name.contains('antlr') }
}

def projectVersion = '1.10.4';
def projectVersion = '1.11.0';

def docProjects() {
subprojects.findAll { !it.name.contains('gradle') && !it.name.contains('antlr') }
Expand Down

0 comments on commit 8934a87

Please sign in to comment.