Skip to content

Commit

Permalink
Bumped version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
jguerinet committed Oct 6, 2015
1 parent b65abf7 commit 5415951
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## Version 2.8.0 (2015-10-06)
* Added correct parsing for "<" and ">" in Android

## Version 2.7.0 (2015-09-21)
* Fixed bug regarding single quotation marks in parsing iOS Strings
* Changed header identifier to be less common
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ To use this:
For example, if you put ### General ### (or ### General), it will be parsed as `/* General */` on iOS and `<!-- General -->` on Android
* Run the jar

[1]:https://github.com/jguerinet/mobile-string-parser/releases/download/v2.7.0/mobile-string-parser-2.7.0.jar
[1]:https://github.com/jguerinet/mobile-string-parser/releases/download/v2.8.0/mobile-string-parser-2.8.0.jar

## Branches
* master: Contains the main code
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ apply plugin: 'java'
apply plugin:'application'

sourceCompatibility = 1.7
version = '2.7.0'
version = '2.8.0'

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion mobile-string-parser.iml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.id="mobile-string-parser" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="2.7.0" type="JAVA_MODULE" version="4">
<module external.linked.project.id="mobile-string-parser" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="2.8.0" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="false">
<output url="file://$MODULE_DIR$/build/classes/main" />
<output-test url="file://$MODULE_DIR$/build/classes/test" />
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/guerinet/stringparser/HeaderString.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
/**
* A String used for a header within the Strings file. Will be a comment within the Strings file
* @author Julien Guerinet
* @version 2.6
* @since 2.6
* @version 2.8.0
* @since 2.6.0
*/
public class HeaderString {
/**
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/guerinet/stringparser/Language.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
/**
* One language that the Strings are in
* @author Julien Guerinet
* @version 2.6
* @since 2.0
* @version 2.8.0
* @since 2.0.0
*/
public class Language {
/**
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/guerinet/stringparser/LanguageString.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
/**
* One String with all of the translations
* @author Julien Guerinet
* @version 2.6
* @since 1.0
* @version 2.8.0
* @since 1.0.0
*/
public class LanguageString extends HeaderString {

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/guerinet/stringparser/StringParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
/**
* Main class, executes the main code for parsing the Google Docs file
* @author Julien Guerinet
* @version 2.6
* @since 1.0
* @version 2.8.0
* @since 1.0.0
*/
public class StringParser{
/* FILE STRINGS */
Expand Down

0 comments on commit 5415951

Please sign in to comment.