Skip to content

Commit c8fbeea

Browse files
committed
v1.8.0
1 parent e5dac95 commit c8fbeea

7 files changed

Lines changed: 21 additions & 12 deletions

File tree

History.md

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

3+
## 1.8.0 / 2015-11-22
4+
- [update packages] mocha->2.3.4, should->7.1.1
5+
- [bug fix] `criterion` plural & singular form
6+
7+
8+
39
## 1.7.2 / 2015-10-11
410
- [update packages] mocha->2.3.3, should->7.1.0
511

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ This function performs multiple inflection methods on a string.
474474
- overlookmotel
475475
- Patrick Mowrer
476476
- Greger Olsson
477-
477+
- Jason Crawford <jason@jasoncrawford.org>
478478

479479

480480
## License

bower.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
{ "name": "Eric Brody" },
2222
{ "name": "overlookmotel" },
2323
{ "name": "Patrick Mowrer" },
24-
{ "name": "Greger Olsson" }
24+
{ "name": "Greger Olsson" },
25+
{ "name": "Jason Crawford", "email": "jason@jasoncrawford.org" }
2526
],
2627
"main": "lib/inflection.js",
2728
"keywords": [

component.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
{ "name": "Eric Brody" },
2525
{ "name": "overlookmotel" },
2626
{ "name": "Patrick Mowrer" },
27-
{ "name": "Greger Olsson" }
27+
{ "name": "Greger Olsson" },
28+
{ "name": "Jason Crawford", "email": "jason@jasoncrawford.org" }
2829
],
2930
"dependencies": {},
3031
"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
@@ -1071,7 +1071,7 @@
10711071
/**
10721072
* @public
10731073
*/
1074-
inflector.version = '1.7.1';
1074+
inflector.version = '1.8.0';
10751075

10761076
return inflector;
10771077
}));

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.7.2",
3+
"version" : "1.8.0",
44
"description": "A port of inflection-js to node.js module",
55
"keywords" : [
66
"inflection", "inflections", "inflection-js", "pluralize" , "singularize",
@@ -23,12 +23,13 @@
2323
{ "name": "Eric Brody" },
2424
{ "name": "overlookmotel" },
2525
{ "name": "Patrick Mowrer" },
26-
{ "name": "Greger Olsson" }
26+
{ "name": "Greger Olsson" },
27+
{ "name": "Jason Crawford", "email": "jason@jasoncrawford.org" }
2728
],
2829
"dependencies" : {},
2930
"devDependencies": {
30-
"mocha" : "2.3.3",
31-
"should": "7.1.0"
31+
"mocha" : "2.3.4",
32+
"should": "7.1.1"
3233
},
3334
"main" : "./lib/inflection.js",
3435
"repository": {

0 commit comments

Comments
 (0)