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

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
  • Loading branch information
longlho committed Jun 5, 2019
1 parent 936bbd0 commit 63e7577
Show file tree
Hide file tree
Showing 8 changed files with 89 additions and 8 deletions.
18 changes: 18 additions & 0 deletions packages/intl-format-cache/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.0.0](https://github.com/formatjs/formatjs/compare/[email protected]@3.0.0) (2019-06-05)


### Features

* add package intl-relativetimeformat ([#51](https://github.com/formatjs/formatjs/issues/51)) ([48c0f43](https://github.com/formatjs/formatjs/commit/48c0f43))
* **intl-messageformat:** rm bundled intl-pluralrules ([a8526c3](https://github.com/formatjs/formatjs/commit/a8526c3))


### BREAKING CHANGES

* **intl-messageformat:** We no longer include intl-pluralrules in our main index
file. Consumer should polyfill accordingly.





## [2.2.9](https://github.com/formatjs/formatjs/compare/[email protected]@2.2.9) (2019-06-03)

**Note:** Version bump only for package intl-format-cache
Expand Down
8 changes: 4 additions & 4 deletions packages/intl-format-cache/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intl-format-cache",
"version": "2.2.9",
"version": "3.0.0",
"description": "A memoizer factory for Intl format constructors.",
"main": "index.js",
"module": "lib/index.js",
Expand All @@ -13,9 +13,9 @@
"prepublishOnly": "npm run build"
},
"devDependencies": {
"intl-messageformat": "^3.3.0",
"intl-relativeformat": "^5.0.0",
"intl-relativetimeformat": "0.1"
"intl-messageformat": "^4.0.0",
"intl-relativeformat": "^6.0.0",
"intl-relativetimeformat": "^1.0.0"
},
"repository": {
"type": "git",
Expand Down
21 changes: 21 additions & 0 deletions packages/intl-messageformat/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.0.0](https://github.com/formatjs/intl-messageformat/compare/[email protected]@4.0.0) (2019-06-05)


### Features

* add package intl-relativetimeformat ([#51](https://github.com/formatjs/intl-messageformat/issues/51)) ([48c0f43](https://github.com/formatjs/intl-messageformat/commit/48c0f43))
* **intl-messageformat:** rm bundled intl-pluralrules ([a8526c3](https://github.com/formatjs/intl-messageformat/commit/a8526c3))
* **intl-messageformat:** rm rolluped dist ([a126939](https://github.com/formatjs/intl-messageformat/commit/a126939))


### BREAKING CHANGES

* **intl-messageformat:** Change dist files packaged. Entry point should stay the
same though.
* **intl-messageformat:** We no longer include intl-pluralrules in our main index
file. Consumer should polyfill accordingly.





# [3.3.0](https://github.com/formatjs/intl-messageformat/compare/[email protected]@3.3.0) (2019-06-03)


Expand Down
2 changes: 1 addition & 1 deletion packages/intl-messageformat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intl-messageformat",
"version": "3.3.0",
"version": "4.0.0",
"description": "Formats ICU Message strings with number, date, plural, and select placeholders to create localized messages.",
"keywords": [
"i18n",
Expand Down
21 changes: 21 additions & 0 deletions packages/intl-relativeformat/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [6.0.0](https://github.com/formatjs/formatjs/compare/[email protected]@6.0.0) (2019-06-05)


### Features

* add package intl-relativetimeformat ([#51](https://github.com/formatjs/formatjs/issues/51)) ([48c0f43](https://github.com/formatjs/formatjs/commit/48c0f43))
* **intl-relativeformat:** rm rolluped dist ([c6f94e4](https://github.com/formatjs/formatjs/commit/c6f94e4))
* **intl-relativeformat:** Use Intl.RelativeTimeFormat ([c014ce0](https://github.com/formatjs/formatjs/commit/c014ce0))


### BREAKING CHANGES

* **intl-relativeformat:** This changes the list of assets we package. However,
entry point is still intact.
* **intl-relativeformat:** We now use Intl.RelativeTimeFormat in
intl-relativeformat so consuming env should polyfill this accordingly





# [5.0.0](https://github.com/formatjs/formatjs/compare/[email protected]@5.0.0) (2019-06-03)


Expand Down
4 changes: 2 additions & 2 deletions packages/intl-relativeformat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intl-relativeformat",
"version": "5.0.0",
"version": "6.0.0",
"description": "Formats JavaScript dates to relative time strings.",
"keywords": [
"intl",
Expand All @@ -26,7 +26,7 @@
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"devDependencies": {
"intl-relativetimeformat": "0.1"
"intl-relativetimeformat": "^1.0.0"
},
"scripts": {
"clean": "rimraf dist lib",
Expand Down
21 changes: 21 additions & 0 deletions packages/intl-relativetimeformat/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.0 (2019-06-05)


### Features

* add package intl-relativetimeformat ([#51](https://github.com/formatjs/formatjs/issues/51)) ([48c0f43](https://github.com/formatjs/formatjs/commit/48c0f43))
* **intl-messageformat:** rm bundled intl-pluralrules ([a8526c3](https://github.com/formatjs/formatjs/commit/a8526c3))
* **intl-relativeformat:** Use Intl.RelativeTimeFormat ([c014ce0](https://github.com/formatjs/formatjs/commit/c014ce0))


### BREAKING CHANGES

* **intl-messageformat:** We no longer include intl-pluralrules in our main index
file. Consumer should polyfill accordingly.
* **intl-relativeformat:** We now use Intl.RelativeTimeFormat in
intl-relativeformat so consuming env should polyfill this accordingly





# [3.1.0](https://github.com/formatjs/formatjs/compare/[email protected]@3.1.0) (2019-05-31)


Expand Down
2 changes: 1 addition & 1 deletion packages/intl-relativetimeformat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intl-relativetimeformat",
"version": "0.1.0",
"version": "1.0.0",
"description": "Formats JavaScript dates to relative time strings.",
"keywords": [
"intl",
Expand Down

0 comments on commit 63e7577

Please sign in to comment.