Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
# Conflicts:
#	gradle.properties
  • Loading branch information
jguerinet committed Jun 6, 2019
2 parents 122a199 + 7176647 commit 710cf35
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 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 8.0.1 (2019-06-06)
- Remove percentage formatting on iOS

## Version 8.0.0 (2019-04-18)

- Added option to specify the casing for the key and type values in a constants config (none, camel, pascal, snake, caps)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/

buildscript {
ext.kotlin_version = '1.3.21'
ext.kotlin_version = '1.3.31'
repositories {
jcenter()
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#

# Project properties
weave_version=8.0.0
weave_version=8.0.1
artifact_name=weave
artifact_main_class=com.guerinet.weave.Weave
group=com.guerinet
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/Weave.kt
Original file line number Diff line number Diff line change
Expand Up @@ -603,8 +603,6 @@ open class Weave {
// Remove <html> </html>tags
.replace(HTML_START_TAG, "", ignoreCase = true)
.replace(HTML_END_TAG, "", ignoreCase = true)
// Percentages
.replace("%", "%%")

writer.println("\"$key\" = \"$string\";")
}
Expand Down

0 comments on commit 710cf35

Please sign in to comment.