Skip to content
This repository was archived by the owner on May 4, 2020. It is now read-only.

Commit 63e7577

Browse files
committed
1 parent 936bbd0 commit 63e7577

File tree

8 files changed

+89
-8
lines changed

8 files changed

+89
-8
lines changed

packages/intl-format-cache/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.0.0](https://github.com/formatjs/formatjs/compare/[email protected]@3.0.0) (2019-06-05)
7+
8+
9+
### Features
10+
11+
* add package intl-relativetimeformat ([#51](https://github.com/formatjs/formatjs/issues/51)) ([48c0f43](https://github.com/formatjs/formatjs/commit/48c0f43))
12+
* **intl-messageformat:** rm bundled intl-pluralrules ([a8526c3](https://github.com/formatjs/formatjs/commit/a8526c3))
13+
14+
15+
### BREAKING CHANGES
16+
17+
* **intl-messageformat:** We no longer include intl-pluralrules in our main index
18+
file. Consumer should polyfill accordingly.
19+
20+
21+
22+
23+
624
## [2.2.9](https://github.com/formatjs/formatjs/compare/[email protected]@2.2.9) (2019-06-03)
725

826
**Note:** Version bump only for package intl-format-cache

packages/intl-format-cache/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "intl-format-cache",
3-
"version": "2.2.9",
3+
"version": "3.0.0",
44
"description": "A memoizer factory for Intl format constructors.",
55
"main": "index.js",
66
"module": "lib/index.js",
@@ -13,9 +13,9 @@
1313
"prepublishOnly": "npm run build"
1414
},
1515
"devDependencies": {
16-
"intl-messageformat": "^3.3.0",
17-
"intl-relativeformat": "^5.0.0",
18-
"intl-relativetimeformat": "0.1"
16+
"intl-messageformat": "^4.0.0",
17+
"intl-relativeformat": "^6.0.0",
18+
"intl-relativetimeformat": "^1.0.0"
1919
},
2020
"repository": {
2121
"type": "git",

packages/intl-messageformat/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0](https://github.com/formatjs/intl-messageformat/compare/[email protected]@4.0.0) (2019-06-05)
7+
8+
9+
### Features
10+
11+
* add package intl-relativetimeformat ([#51](https://github.com/formatjs/intl-messageformat/issues/51)) ([48c0f43](https://github.com/formatjs/intl-messageformat/commit/48c0f43))
12+
* **intl-messageformat:** rm bundled intl-pluralrules ([a8526c3](https://github.com/formatjs/intl-messageformat/commit/a8526c3))
13+
* **intl-messageformat:** rm rolluped dist ([a126939](https://github.com/formatjs/intl-messageformat/commit/a126939))
14+
15+
16+
### BREAKING CHANGES
17+
18+
* **intl-messageformat:** Change dist files packaged. Entry point should stay the
19+
same though.
20+
* **intl-messageformat:** We no longer include intl-pluralrules in our main index
21+
file. Consumer should polyfill accordingly.
22+
23+
24+
25+
26+
627
# [3.3.0](https://github.com/formatjs/intl-messageformat/compare/[email protected]@3.3.0) (2019-06-03)
728

829

packages/intl-messageformat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "intl-messageformat",
3-
"version": "3.3.0",
3+
"version": "4.0.0",
44
"description": "Formats ICU Message strings with number, date, plural, and select placeholders to create localized messages.",
55
"keywords": [
66
"i18n",

packages/intl-relativeformat/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [6.0.0](https://github.com/formatjs/formatjs/compare/[email protected]@6.0.0) (2019-06-05)
7+
8+
9+
### Features
10+
11+
* add package intl-relativetimeformat ([#51](https://github.com/formatjs/formatjs/issues/51)) ([48c0f43](https://github.com/formatjs/formatjs/commit/48c0f43))
12+
* **intl-relativeformat:** rm rolluped dist ([c6f94e4](https://github.com/formatjs/formatjs/commit/c6f94e4))
13+
* **intl-relativeformat:** Use Intl.RelativeTimeFormat ([c014ce0](https://github.com/formatjs/formatjs/commit/c014ce0))
14+
15+
16+
### BREAKING CHANGES
17+
18+
* **intl-relativeformat:** This changes the list of assets we package. However,
19+
entry point is still intact.
20+
* **intl-relativeformat:** We now use Intl.RelativeTimeFormat in
21+
intl-relativeformat so consuming env should polyfill this accordingly
22+
23+
24+
25+
26+
627
# [5.0.0](https://github.com/formatjs/formatjs/compare/[email protected]@5.0.0) (2019-06-03)
728

829

packages/intl-relativeformat/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "intl-relativeformat",
3-
"version": "5.0.0",
3+
"version": "6.0.0",
44
"description": "Formats JavaScript dates to relative time strings.",
55
"keywords": [
66
"intl",
@@ -26,7 +26,7 @@
2626
"module": "lib/index.js",
2727
"typings": "lib/index.d.ts",
2828
"devDependencies": {
29-
"intl-relativetimeformat": "0.1"
29+
"intl-relativetimeformat": "^1.0.0"
3030
},
3131
"scripts": {
3232
"clean": "rimraf dist lib",

packages/intl-relativetimeformat/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# 1.0.0 (2019-06-05)
7+
8+
9+
### Features
10+
11+
* add package intl-relativetimeformat ([#51](https://github.com/formatjs/formatjs/issues/51)) ([48c0f43](https://github.com/formatjs/formatjs/commit/48c0f43))
12+
* **intl-messageformat:** rm bundled intl-pluralrules ([a8526c3](https://github.com/formatjs/formatjs/commit/a8526c3))
13+
* **intl-relativeformat:** Use Intl.RelativeTimeFormat ([c014ce0](https://github.com/formatjs/formatjs/commit/c014ce0))
14+
15+
16+
### BREAKING CHANGES
17+
18+
* **intl-messageformat:** We no longer include intl-pluralrules in our main index
19+
file. Consumer should polyfill accordingly.
20+
* **intl-relativeformat:** We now use Intl.RelativeTimeFormat in
21+
intl-relativeformat so consuming env should polyfill this accordingly
22+
23+
24+
25+
26+
627
# [3.1.0](https://github.com/formatjs/formatjs/compare/[email protected]@3.1.0) (2019-05-31)
728

829

packages/intl-relativetimeformat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "intl-relativetimeformat",
3-
"version": "0.1.0",
3+
"version": "1.0.0",
44
"description": "Formats JavaScript dates to relative time strings.",
55
"keywords": [
66
"intl",

0 commit comments

Comments
 (0)