Skip to content

Commit

Permalink
chore: Publish
Browse files Browse the repository at this point in the history
- make-plural-cli@7.0.0
- make-plural-compiler@6.0.0
- make-plural@7.0.0
  • Loading branch information
eemeli committed Aug 27, 2021
1 parent 1bf9732 commit 022885d
Show file tree
Hide file tree
Showing 6 changed files with 69 additions and 4 deletions.
20 changes: 20 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/make-plural-cli@6.2.0...make-plural-cli@6.2.1) (2020-08-09)

**Note:** Version bump only for package make-plural-cli
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "make-plural-cli",
"version": "6.2.1",
"version": "7.0.0",
"description": "CLI for translating Unicode CLDR pluralization rules to executable JavaScript",
"keywords": [
"unicode",
Expand Down Expand Up @@ -29,7 +29,7 @@
},
"dependencies": {
"cldr-core": "^39.0.0",
"make-plural-compiler": "^5.1.0",
"make-plural-compiler": "^6.0.0",
"safe-identifier": "^0.4.2",
"yargs": "^17.1.1"
},
Expand Down
22 changes: 22 additions & 0 deletions packages/compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/make-plural-compiler@5.0.0...make-plural-compiler@5.1.0) (2020-03-08)


Expand Down
2 changes: 1 addition & 1 deletion packages/compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "make-plural-compiler",
"version": "5.1.0",
"version": "6.0.0",
"description": "Translates Unicode CLDR pluralization rules to executable JavaScript",
"keywords": [
"unicode",
Expand Down
23 changes: 23 additions & 0 deletions packages/plurals/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/make-plural@6.2.1...make-plural@6.2.2) (2020-08-09)


Expand Down
2 changes: 1 addition & 1 deletion packages/plurals/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "make-plural",
"version": "6.2.2",
"version": "7.0.0",
"description": "Unicode CLDR pluralization rules as JavaScript functions",
"keywords": [
"unicode",
Expand Down

0 comments on commit 022885d

Please sign in to comment.