-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
69 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,26 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [https://github.com/eemeli/make-plural/compare/6.2.1...7.0.0](7.0.0) (2021-08-27) | ||
|
||
### ⚠ Breaking Changes | ||
|
||
* While using ES6 syntax for functions does not change | ||
their behaviour in any way, it will need to be transpiled if the target | ||
environment (e.g. IE 11) does not support it. | ||
* yargs 17 no longer supports Node.js 10; the new minimum is Node.js 12. | ||
|
||
### Features | ||
|
||
* Update to CLDR 39 ([https://github.com/eemeli/make-plural/commit/ed2bdbc77e6e86444ec4711124b94a780069f0e4](ed2bdbc)) | ||
* Use const and => notation for function stringification ([https://github.com/eemeli/make-plural/commit/b9da90acd501b86a6b2ab1e73876ea05c57ebc74](b9da90a)) | ||
* Add ranges command ([https://github.com/eemeli/make-plural/commit/902cfa0a6aac428051736bbec4c8aa12c3fc1b13](902cfa0)) | ||
* Add examples command ([https://github.com/eemeli/make-plural/commit/ab33114286d5508ed8c9ddf38ed673e5cb3f7d8b](ab33114)) | ||
|
||
### Bug Fixes | ||
|
||
* Drop cli dependency on common-tags; streamline UMD wrapper ([https://github.com/eemeli/make-plural/commit/1404ac640b2d7391973d8d8dae060fef7d468f74](1404ac6)) | ||
|
||
## [6.2.1](https://github.com/eemeli/make-plural/compare/[email protected]@6.2.1) (2020-08-09) | ||
|
||
**Note:** Version bump only for package make-plural-cli | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,28 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [https://github.com/eemeli/make-plural/compare/5.1.0...6.0.0](6.0.0) (2021-08-27) | ||
|
||
### ⚠ Breaking Changes | ||
|
||
* Users of `make-plural-compiler` will need to apply the | ||
following change to their code: | ||
|
||
-import Compiler from 'make-plural-compiler' | ||
+import { Compiler } from 'make-plural-compiler' | ||
* While using ES6 syntax for functions does not change | ||
their behaviour in any way, it will need to be transpiled if the target | ||
environment (e.g. IE 11) does not support it. | ||
|
||
### Features | ||
|
||
* Use const and => notation for function stringification ([https://github.com/eemeli/make-plural/commit/b9da90acd501b86a6b2ab1e73876ea05c57ebc74](b9da90a)) | ||
* Add plural range support ([https://github.com/eemeli/make-plural/commit/cf77a715c65f4282e95a5b332f9261eff0c234f0](cf77a71)) | ||
* export { Compiler } rather than default ([https://github.com/eemeli/make-plural/commit/0cbbf58240208273f8350e5d9d162787a6eba49f](0cbbf58)) | ||
* Export compileRange ([https://github.com/eemeli/make-plural/commit/ab9c32a6c1b6c34404714cb7b45114c6310a5d65](ab9c32a)) | ||
* Support c & e operands by ignoring them (closes [https://github.com/eemeli/make-plural/issues/22](#22)) ([https://github.com/eemeli/make-plural/commit/8c6a553c9c347301df5be24302836bcd20452038](8c6a553)) | ||
* Add Compiler.parseExamples() & refactor compiler.tests into compiler.examples ([https://github.com/eemeli/make-plural/commit/655d27f6ef194e06d12476cd30e4a7b2a98b0a6f](655d27f)) | ||
|
||
# [5.1.0](https://github.com/eemeli/make-plural/compare/[email protected]@5.1.0) (2020-03-08) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,29 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [https://github.com/eemeli/make-plural/compare/6.2.2...7.0.0](7.0.0) (2021-08-27) | ||
|
||
### ⚠ Breaking Changes | ||
|
||
* This package is now licensed | ||
with the OSI-apporved Unicode Data Files and Software License, as it is | ||
based on the data provided in the `cldr-core` package, which is thus | ||
licensed. | ||
* While using ES6 syntax for functions does not change | ||
their behaviour in any way, it will need to be transpiled if the target | ||
environment (e.g. IE 11) does not support it. | ||
|
||
### Features | ||
|
||
* Update to CLDR 39 ([https://github.com/eemeli/make-plural/commit/ed2bdbc77e6e86444ec4711124b94a780069f0e4](ed2bdbc)) | ||
* Use const and => notation for function stringification ([https://github.com/eemeli/make-plural/commit/b9da90acd501b86a6b2ab1e73876ea05c57ebc74](b9da90a)) | ||
* Add 'make-plural/ranges' as a new endpoint for plural ranges ([https://github.com/eemeli/make-plural/commit/ee848b34863be2dfd5cfe96572bea53e5efbde40](ee848b3)) | ||
* Add 'make-plural/examples' as a new endpoint ([https://github.com/eemeli/make-plural/commit/7ec09c7f9924508653618dc0bad433b4b2349c00](7ec09c7)) | ||
|
||
### Bug Fixes | ||
|
||
* Drop cli dependency on common-tags; streamline UMD wrapper ([https://github.com/eemeli/make-plural/commit/1404ac640b2d7391973d8d8dae060fef7d468f74](1404ac6)) | ||
|
||
## [6.2.2](https://github.com/eemeli/make-plural/compare/[email protected]@6.2.2) (2020-08-09) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters