Skip to content

Commit 5a63978

Browse files
authored
Merge pull request #35 from cknitt/0.7.0
Version 0.7.0
2 parents 809d2f2 + 4070d5e commit 5a63978

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.7.0 - 2019-02-12
4+
5+
- Upgraded Reason parser to Reason 3.4.0.
6+
- Upgraded dependencies.
7+
38
## 0.6.0 - 2018-12-09
49

510
- Upgraded Reason parser to Reason 3.3.7.

bin/Version.re

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
let version = "0.6.0";
1+
let version = "0.7.0";

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bs-react-intl-extractor",
3-
"version": "0.6.0",
3+
"version": "0.7.0",
44
"description": "Message extractor for bs-react-intl",
55
"author": "Christoph Knittel <[email protected]>",
66
"license": "MIT",

test/Test.re

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module Usage = {
2121
};
2222

2323
module Version = {
24-
let version = "0.6.0";
24+
let version = "0.7.0";
2525

2626
let testVersion = () => checkRes("-v", (version ++ "\n", ""));
2727

@@ -81,7 +81,8 @@ module Extract = {
8181

8282
let dupWithoutFlagError = "Error: duplicate message id: test3.msg1.1\n";
8383

84-
let testExtractDupWithoutFlagError = () => checkRes("test/test3/Test_1_1.re test/test3/Test_1_2.re", ("", dupWithoutFlagError));
84+
let testExtractDupWithoutFlagError = () =>
85+
checkRes("test/test3/Test_1_1.re test/test3/Test_1_2.re", ("", dupWithoutFlagError));
8586

8687
let dupWithDifferentDefaultMessageError = "Error: duplicate message id: test3.msg1.1 with different default messages\n";
8788

0 commit comments

Comments
 (0)