Skip to content

Commit

Permalink
JavaScript version 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sffc committed Nov 4, 2019
1 parent 3ad7744 commit f981720
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This document describes the steps required to update Myanmar Tools in package re

## Versioning

Version tags apply to the entire repository. It is therefore essential that you maintain the stability of all projects when making a release. For example, if you are making a Java-specific change, you shouldn't commit changes that break other clients, even if you intend to fix them later.
Version tags apply to the entire repository, but each language has a suffix on the tag. For example, `v1.1.2+js` is version 1.1.2 for the JavaScript client.

We use semantic versioning: change the small digit for minor bug fixes, the middle digit for larger bug fixes or minor feature improvements, and the large digit for major feature improvements that could also break backwards compatibility.

Expand Down
4 changes: 2 additions & 2 deletions clients/js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ For a complete working example, see [samples/node/demo.js](../../samples/node/de
Include the file *zawgyi_detector.min.js*. It is available on [Google Hosted Libraries](https://developers.google.com/speed/libraries/#myanmar-tools):

```html
<script src="https://ajax.googleapis.com/ajax/libs/myanmar-tools/1.1.1/zawgyi_detector.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/myanmar-tools/1.1.3/zawgyi_detector.min.js"></script>
```

After doing this, the ZawgyiDetector will be available as the global `google_myanmar_tools.ZawgyiDetector`, and you can use it the same way as above:
Expand All @@ -51,7 +51,7 @@ const score = detector.getZawgyiProbability("မ္း");
Likewise for the converter:

```html
<script src="https://ajax.googleapis.com/ajax/libs/myanmar-tools/1.1.1/zawgyi_converter.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/myanmar-tools/1.1.3/zawgyi_converter.min.js"></script>
```

```js
Expand Down
2 changes: 1 addition & 1 deletion clients/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "myanmar-tools",
"version": "1.1.2",
"version": "1.1.3",
"description": "Tools for handling the Zawgyi font encoding in Myanmar.",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit f981720

Please sign in to comment.