Skip to content

Commit 6cfc616

Browse files
committed
1.12.0
1 parent b9f4fd4 commit 6cfc616

6 files changed

Lines changed: 24 additions & 13 deletions

File tree

History.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# History
22

3+
## 1.12.0 / 2017-01-27
4+
- [update packages] mocha->3.2.0, should->11.2.0
5+
- [bug fix] `minus` plural & singular form
6+
- [bug fix] `save` plural & singular form
7+
8+
9+
310
## 1.11.0 / 2016-04-20
411
- [update packages] mocha->3.0.2, should->11.1.0
512
- [bug fix] `inflection.transform` in ES6

bower.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "inflection",
3-
"version": "1.11.0",
3+
"version": "1.12.0",
44
"homepage": "https://github.com/dreamerslab/node.inflection",
55
"description": "JavaScript Inflection Support",
66
"authors": [
@@ -23,7 +23,9 @@
2323
{ "name": "Patrick Mowrer" },
2424
{ "name": "Greger Olsson" },
2525
{ "name": "Jason Crawford", "email": "jason@jasoncrawford.org" },
26-
{ "name": "Ray Myers", "email": "ray.myers@gmail.com" }
26+
{ "name": "Ray Myers", "email": "ray.myers@gmail.com" },
27+
{ "name": "Dillon Shook", "email": "dshook@alumni.nmt.edu" }
28+
2729
],
2830
"main": "lib/inflection.js",
2931
"keywords": [

component.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "inflection",
3-
"version": "1.11.0",
3+
"version": "1.12.0",
44
"repo": "dreamerslab/node.inflection",
55
"description": "A port of inflection-js to node.js module",
66
"keywords" : [
@@ -26,7 +26,8 @@
2626
{ "name": "Patrick Mowrer" },
2727
{ "name": "Greger Olsson" },
2828
{ "name": "Jason Crawford", "email": "jason@jasoncrawford.org" },
29-
{ "name": "Ray Myers", "email": "ray.myers@gmail.com" }
29+
{ "name": "Ray Myers", "email": "ray.myers@gmail.com" },
30+
{ "name": "Dillon Shook", "email": "dshook@alumni.nmt.edu" }
3031
],
3132
"dependencies": {},
3233
"license": "MIT",

inflection.min.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/inflection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1080,7 +1080,7 @@
10801080
/**
10811081
* @public
10821082
*/
1083-
inflector.version = '1.11.0';
1083+
inflector.version = '1.12.0';
10841084

10851085
return inflector;
10861086
}));

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name" : "inflection",
3-
"version" : "1.11.0",
3+
"version" : "1.12.0",
44
"description": "A port of inflection-js to node.js module",
55
"keywords" : [
66
"inflection", "inflections", "inflection-js", "pluralize" , "singularize",
@@ -25,12 +25,13 @@
2525
{ "name": "Patrick Mowrer" },
2626
{ "name": "Greger Olsson" },
2727
{ "name": "Jason Crawford", "email": "jason@jasoncrawford.org" },
28-
{ "name": "Ray Myers", "email": "ray.myers@gmail.com" }
28+
{ "name": "Ray Myers", "email": "ray.myers@gmail.com" },
29+
{ "name": "Dillon Shook", "email": "dshook@alumni.nmt.edu" }
2930
],
3031
"dependencies" : {},
3132
"devDependencies": {
32-
"mocha" : "3.0.2",
33-
"should": "11.1.0"
33+
"mocha" : "3.2.0",
34+
"should": "11.2.0"
3435
},
3536
"main" : "./lib/inflection.js",
3637
"repository": {

0 commit comments

Comments
 (0)