Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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