Skip to content

Commit

Permalink
Merge pull request #35 from cknitt/0.7.0
Browse files Browse the repository at this point in the history
Version 0.7.0
  • Loading branch information
cknitt authored Feb 12, 2019
2 parents 809d2f2 + 4070d5e commit 5a63978
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.7.0 - 2019-02-12

- Upgraded Reason parser to Reason 3.4.0.
- Upgraded dependencies.

## 0.6.0 - 2018-12-09

- Upgraded Reason parser to Reason 3.3.7.
Expand Down
2 changes: 1 addition & 1 deletion bin/Version.re
Original file line number Diff line number Diff line change
@@ -1 +1 @@
let version = "0.6.0";
let version = "0.7.0";
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bs-react-intl-extractor",
"version": "0.6.0",
"version": "0.7.0",
"description": "Message extractor for bs-react-intl",
"author": "Christoph Knittel <christoph.knittel@cca.io>",
"license": "MIT",
Expand Down
5 changes: 3 additions & 2 deletions test/Test.re
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module Usage = {
};

module Version = {
let version = "0.6.0";
let version = "0.7.0";

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

Expand Down Expand Up @@ -81,7 +81,8 @@ module Extract = {

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

let testExtractDupWithoutFlagError = () => checkRes("test/test3/Test_1_1.re test/test3/Test_1_2.re", ("", dupWithoutFlagError));
let testExtractDupWithoutFlagError = () =>
checkRes("test/test3/Test_1_1.re test/test3/Test_1_2.re", ("", dupWithoutFlagError));

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

Expand Down

0 comments on commit 5a63978

Please sign in to comment.