Skip to content

Commit 86b5956

Browse files
author
aMarCruz
committed
Bumb v1.1.0
1 parent 8b67019 commit 86b5956

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog for @jsbits
22

3-
## \[Unreleased]
3+
## \[1.1.0] 2018-11-12
44

55
### Added
66

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,32 +24,32 @@ _**NOTE:** This work is in its infancy, I will be adding more functions and bett
2424

2525
Adds or sustract X months to any JavaScript Date, local or UTC.
2626

27-
Group: date – Author: @aMarCruz
27+
v1.1.0 – Group: date – Author: @aMarCruz
2828

2929
### [deepClone](packages/deep-clone)
3030

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

33-
Group: object – Author: @aMarCruz
33+
v1.0.1 – Group: object – Author: @aMarCruz
3434

3535
### [escapeRegexStr](packages/escape-regex-str)
3636

3737
Escapes special characters in a string, for matching substrings with a RegExp instance.
3838

39-
Group: dev – Author: @aMarCruz
39+
v1.0.1 – Group: dev – Author: @aMarCruz
4040

4141
### [getPackageVersion](packages/get-package-version)
4242

4343
_NodeJS only_<br>
4444
Get the version of the package.json file found in the given directory or in one of its parents.
4545

46-
Group: dev &ndash; Author: @aMarCruz
46+
v1.0.1 &ndash; Group: dev &ndash; Author: @aMarCruz
4747

4848
### [hasOwnProperties](packages/has-own-properties)
4949

5050
Determinates if an object has own properties.
5151

52-
Group: object &ndash; Author: @aMarCruz
52+
v1.0.1 &ndash; Group: object &ndash; Author: @aMarCruz
5353
<!--END_FUNCTION_LIST-->
5454

5555
## Distribution Formats

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jsbits",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "Public library of professional high quality functions for TypeScript and JavaScript.",
55
"author": "aMarCruz <[email protected]>",
66
"license": "BSD-2-Clause",

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.0",
2+
"_VERSION": "1.0.1",
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/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.0",
3+
"version": "1.0.1",
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.0",
2+
"_VERSION": "1.0.1",
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/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.0",
3+
"version": "1.0.1",
44
"description": "Escapes special characters in a string, for matching substrings with a RegExp instance.",
55
"license": "BSD-2-Clause",
66
"main": "./index.js",

packages/get-package-version/.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.0",
2+
"_VERSION": "1.0.1",
33
"_DESCRIPTION": "Get the version of the package.json file found in the given directory or in one of its parents.",
44
"_SINCE": "1.0.0",
55
"_TARGET": "node",

packages/get-package-version/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jsbits/get-package-version",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Get the version of the package.json file found in the given directory or in one of its parents.",
55
"license": "BSD-2-Clause",
66
"main": "./index.js",

scripts/root-update-function-list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const markdownList = () => {
6969
7070
${target}${values._DESCRIPTION}
7171
72-
Group: ${groups} &ndash; Author: ${values._AUTHOR || D.AUTHOR_NAME}
72+
v${values._VERSION} &ndash; Group: ${groups} &ndash; Author: ${values._AUTHOR || D.AUTHOR_NAME}
7373
`
7474
}).join('')
7575
}

0 commit comments

Comments
 (0)