Skip to content

Commit

Permalink
13.9.3 hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
spencermountain committed Feb 18, 2021
1 parent bd7929c commit b505160
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 11 deletions.
2 changes: 1 addition & 1 deletion builds/compromise-tokenize.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions builds/compromise.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* compromise 13.9.2 MIT */
/* compromise 13.9.3 MIT */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
Expand Down Expand Up @@ -3819,7 +3819,7 @@

var fromJSON_1 = fromJSON;

var _version = '13.9.2';
var _version = '13.9.3';

var _data = {
"Comparative": "true¦better",
Expand Down
2 changes: 1 addition & 1 deletion builds/compromise.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions builds/compromise.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* compromise 13.9.2 MIT */
/* compromise 13.9.3 MIT */
function _typeof(obj) {
"@babel/helpers - typeof";

Expand Down Expand Up @@ -3813,7 +3813,7 @@ var fromJSON = function fromJSON(json, world) {

var fromJSON_1 = fromJSON;

var _version = '13.9.2';
var _version = '13.9.3';

var _data = {
"Comparative": "true¦better",
Expand Down
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,15 @@ compromise uses semver, and pushes to npm frequently
While all _Major_ releases should be reviewed, our only two _large_ releases are **v6** in 2016 and and **v12** in 2019. Others have been mostly incremental, or niche.

<!-- #### [Unreleased]
- **[new]** - #Fraction tag and improved fraction support (thanks Jakeii!)
-->

#### 13.9.3 [Feb 2021]
- **[fix]** - fix weird ordering issue with named exports #815

#### 13.9.2 [Feb 2021]
- **[fix]** - typescript issue

#### 13.9.1 [Feb 2021]
- **[fix]** - matches over a contraction
- **[new]** - add 'implicit' text output
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Spencer Kelly <spencermountain@gmail.com> (http://spencermounta.in)",
"name": "compromise",
"description": "modest natural language processing",
"version": "13.9.2",
"version": "13.9.3",
"main": "./builds/compromise.js",
"unpkg": "./builds/compromise.min.js",
"module": "./builds/compromise.mjs",
Expand All @@ -11,12 +11,12 @@
"sideEffects": false,
"exports": {
".": {
"default": "./builds/compromise.js",
"require": "./builds/compromise.js",
"import": "./builds/compromise.mjs"
"import": "./builds/compromise.mjs",
"default": "./builds/compromise.js"
},
"./tokenize": {
"require": "./builds/compromise-tokenize.js"
"default": "./builds/compromise-tokenize.js"
}
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/_version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = '13.9.2'
module.exports = '13.9.3'

0 comments on commit b505160

Please sign in to comment.