Skip to content

Commit 25c3149

Browse files
author
aMarCruz
committed
Bumb versions
1 parent 27dc0cf commit 25c3149

File tree

16 files changed

+21
-21
lines changed

16 files changed

+21
-21
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,33 +32,33 @@ _**NOTE:** This work is in its infancy, I will be adding more functions as my ti
3232

3333
Adds or sustract X months to any JavaScript Date, local or UTC.
3434

35-
v1.1.0 – Group: date – Author: @aMarCruz
35+
v1.1.1 – Group: date – Author: @aMarCruz
3636

3737
### [deepClone](packages/deep-clone/README.md)
3838

3939
Performs a deep cloning of an object own properties, with loosy or exact behavior.
4040

41-
v1.0.1 – Group: object – Author: @aMarCruz
41+
v1.1.0 – Group: object – Author: @aMarCruz
4242

4343
### [escapeRegexStr](packages/escape-regex-str/README.md)
4444

4545
Escapes special characters in a string, for matching substrings with a RegExp instance.
4646

47-
v1.0.1 – Group: dev – Author: @aMarCruz
47+
v1.0.2 – Group: dev – Author: @aMarCruz
4848

4949
### [getPackageVersion](packages/get-package-version/README.md)
5050

5151
_NodeJS only_.
5252

5353
Get the version of the package.json file found in the given directory or in one of its parents.
5454

55-
v1.0.1 – Group: dev – Author: @aMarCruz
55+
v1.0.2 – Group: dev – Author: @aMarCruz
5656

5757
### [hasOwnProperties](packages/has-own-properties/README.md)
5858

5959
Determines whether an object has own properties or symbols, including (optionally) the non-enumerable ones.
6060

61-
v1.0.1 – Group: object – Author: @aMarCruz
61+
v1.1.0 – Group: object – Author: @aMarCruz
6262

6363
<!--END_FUNCTION_LIST-->
6464

packages/add-months/.jsbits.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"_VERSION": "1.1.0",
2+
"_VERSION": "1.1.1",
33
"_DESCRIPTION": "Adds or sustract X months to any JavaScript Date, local or UTC.",
44
"_SINCE": "1.0.0",
55
"_GROUPS": [

packages/add-months/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5-
## \[Unreleased]
5+
## \[1.1.1] - 2018-12-06
66

77
### Fixed
88

packages/add-months/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jsbits/add-months",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Adds or sustract X months to any JavaScript Date, local or UTC.",
55
"license": "BSD-2-Clause",
66
"main": "./index.js",

packages/deep-clone/.jsbits.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"_VERSION": "1.0.1",
2+
"_VERSION": "1.1.0",
33
"_DESCRIPTION": "Performs a deep cloning of an object own properties, with loosy or exact behavior.",
44
"_SINCE": "1.0.0",
55
"_GROUPS": [

packages/deep-clone/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5-
## \[Unreleased]
5+
## \[1.1.0] - 2018-12-06
66

77
### Added
88

packages/deep-clone/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jsbits/deep-clone",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "Performs a deep cloning of an object own properties, with loosy or exact behavior.",
55
"license": "BSD-2-Clause",
66
"main": "./index.js",

packages/escape-regex-str/.jsbits.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"_VERSION": "1.0.1",
2+
"_VERSION": "1.0.2",
33
"_DESCRIPTION": "Escapes special characters in a string, for matching substrings with a RegExp instance.",
44
"_SINCE": "1.0.0",
55
"_GROUPS": [

packages/escape-regex-str/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5-
## \[Unreleased]
5+
## \[1.0.2] - 2018-12-06
66

77
### Fixed
88

packages/escape-regex-str/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jsbits/escape-regex-str",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Escapes special characters in a string, for matching substrings with a RegExp instance.",
55
"license": "BSD-2-Clause",
66
"main": "./index.js",

0 commit comments

Comments
 (0)