Skip to content

Commit 54124b3

Browse files
committed
chore: use correct version in other version references
bower.json, component.json and inflection.js
1 parent 8d1caa7 commit 54124b3

File tree

3 files changed

+22
-18
lines changed

3 files changed

+22
-18
lines changed

bower.json

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
{
22
"name": "inflection",
3-
"version": "1.12.0",
3+
"version": "1.13.0",
44
"homepage": "https://github.com/dreamerslab/node.inflection",
55
"description": "JavaScript Inflection Support",
6-
"authors": [
7-
"ben <ben@dreamerslab.com>"
8-
],
6+
"authors": ["ben <ben@dreamerslab.com>"],
97
"contributors": [
108
{ "name": "Ryan Schuft", "email": "ryan.schuft@gmail.com" },
119
{ "name": "Ben Lin", "email": "ben@dreamerslab.com" },
@@ -25,7 +23,6 @@
2523
{ "name": "Jason Crawford", "email": "jason@jasoncrawford.org" },
2624
{ "name": "Ray Myers", "email": "ray.myers@gmail.com" },
2725
{ "name": "Dillon Shook", "email": "dshook@alumni.nmt.edu" }
28-
2926
],
3027
"main": "lib/inflection.js",
3128
"keywords": [
@@ -48,11 +45,5 @@
4845
"ordinalize"
4946
],
5047
"license": "MIT",
51-
"ignore": [
52-
"**/.*",
53-
"node_modules",
54-
"bower_components",
55-
"test",
56-
"tests"
57-
]
48+
"ignore": ["**/.*", "node_modules", "bower_components", "test", "tests"]
5849
}

component.json

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,25 @@
11
{
22
"name": "inflection",
3-
"version": "1.12.0",
3+
"version": "1.13.0",
44
"repo": "dreamerslab/node.inflection",
55
"description": "A port of inflection-js to node.js module",
6-
"keywords" : [
7-
"inflection", "inflections", "inflection-js", "pluralize" , "singularize",
8-
"camelize", "underscore", "humanize", "capitalize", "dasherize", "titleize",
9-
"demodulize", "tableize", "classify", "foreign_key", "ordinalize"
6+
"keywords": [
7+
"inflection",
8+
"inflections",
9+
"inflection-js",
10+
"pluralize",
11+
"singularize",
12+
"camelize",
13+
"underscore",
14+
"humanize",
15+
"capitalize",
16+
"dasherize",
17+
"titleize",
18+
"demodulize",
19+
"tableize",
20+
"classify",
21+
"foreign_key",
22+
"ordinalize"
1023
],
1124
"author": "dreamerslab <ben@dreamerslab.com>",
1225
"contributors": [

lib/inflection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1079,7 +1079,7 @@
10791079
/**
10801080
* @public
10811081
*/
1082-
inflector.version = '1.12.0';
1082+
inflector.version = '1.13.0';
10831083

10841084
return inflector;
10851085
}));

0 commit comments

Comments
 (0)