Skip to content

Commit

Permalink
Prepare v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
spautz committed Aug 17, 2020
1 parent a38b52c commit b1b7a55
Show file tree
Hide file tree
Showing 13 changed files with 68 additions and 24 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Expand Up @@ -2,9 +2,9 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

**This library is not yet ready for use. Once it is, v0.1.0 will be the initial release.**
### [0.1.0](https://github.com/spautz/react-hibernate/compare/v0.0.4...v0.1.0) (2020-08-16)

# Private Releases
Update dependencies, devDependencies, and project config. No breaking changes in the library itself.

### [0.0.4](https://github.com/spautz/react-hibernate/compare/v0.0.3...v0.0.4) (2020-06-30)

Expand Down
8 changes: 7 additions & 1 deletion lerna.json
Expand Up @@ -3,5 +3,11 @@
"packages": ["packages/*"],
"version": "independent",
"npmClient": "yarn",
"useWorkspaces": true
"useWorkspaces": true,

"command": {
"version": {
"allowBranch": ["master", "next"]
}
}
}
11 changes: 7 additions & 4 deletions package.json
Expand Up @@ -12,7 +12,7 @@
"scripts": {
"____ LIFECYCLE HOOKS _______________________________________________": "",
"prepare": "lerna bootstrap --ignore-scripts && lerna exec yarn prepare",
"prepublishOnly": "lerna bootstrap && yarn checkup",
"prepublishOnly": "yarn checkup",
"prerelease": "yon clean",
"pretest": "yon test:clean",
"____ INTEGRATION ___________________________________________________": "",
Expand All @@ -24,8 +24,10 @@
"____ BATCH COMMANDS FOR PACKAGES ___________________________________": "",
"packages:prepare": "lerna exec yon prepare",
"packages:build": "lerna exec yon build",
"packages:checkup": "lerna exec yon checkup",
"packages:release:changelog": "lerna exec yon release:changelog ",
"packages:test": "lerna exec yon test",
"packages:clean": "lerna exec yon clean",
"packages:checkup": "lerna exec yon checkup",
"packages:dev": "lerna exec yon dev",
"packages:all": "lerna exec yon all",
"____ INDIVIDUAL COMMANDS ___________________________________________": "",
Expand All @@ -36,8 +38,9 @@
"lint": "eslint \"**/*.{js,jsx,json,ts,tsx}\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"release:changelog": "standard-version --skip.commit --skip.tag --release-as ",
"release:tag": "standard-version --commit-all --sign --skip.changelog --release-as ",
"release:version": "yarn lerna version --no-changelog --no-push --no-git-tag-version ",
"release:tag": "yarn lerna version --no-changelog --no-push --sign-git-commit ",
"release:postpublish": "standard-version --commit-all --sign --skip.changelog --release-as ",
"test": "jest --coverage",
"test:clean": "rimraf coverage/",
"test:report": "jest --coverage --coverageReporters=text-lcov | coveralls",
Expand Down
9 changes: 9 additions & 0 deletions packages/dev-helpers/CHANGELOG.md
@@ -0,0 +1,9 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

**This library is not published.**

### [0.1.0](https://github.com/spautz/react-hibernate/compare/v0.0.4...v0.1.0) (2020-08-16)

Update dependencies, devDependencies, and project config. No breaking changes in the library itself.
3 changes: 2 additions & 1 deletion packages/dev-helpers/package.json
@@ -1,7 +1,7 @@
{
"name": "react-hibernate-dev-helpers",
"private": true,
"version": "0.0.4",
"version": "0.1.0",
"description": "Utilities for demonstrating React Hibernate",
"license": "MIT",
"homepage": "https://github.com/spautz/react-hibernate/packages/dev-helpers#readme",
Expand Down Expand Up @@ -46,6 +46,7 @@
"format": "prettier --write \"**/*.*\"",
"format:checkup": "prettier --list-different \"**/*.*\"",
"lint": "eslint \"**/*.{js,jsx,json,ts,tsx}\"",
"release:changelog": "standard-version --skip.commit --skip.tag --release-as ",
"test": "echo \"@TODO: tests for dev-helpers\"",
"test:clean": "rimraf coverage-local/",
"test:watch": "echo \"@TODO: tests for dev-helpers\"",
Expand Down
9 changes: 9 additions & 0 deletions packages/react-hibernate/CHANGELOG.md
@@ -0,0 +1,9 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

**This library is not yet ready for use. Once it is, v0.1.0 will be the initial release.**

### [0.1.0](https://github.com/spautz/react-hibernate/compare/v0.0.4...v0.1.0) (2020-08-16)

Update dependencies, devDependencies, and project config. No breaking changes in the library itself.
5 changes: 3 additions & 2 deletions packages/react-hibernate/package.json
@@ -1,7 +1,7 @@
{
"name": "react-hibernate",
"private": true,
"version": "0.0.4",
"version": "0.1.0",
"description": "Restore previously-unmounted subtrees -- state and all -- on remount.",
"keywords": [],
"license": "MIT",
Expand Down Expand Up @@ -48,6 +48,7 @@
"format": "prettier --write \"**/*.*\"",
"format:checkup": "prettier --list-different \"**/*.*\"",
"lint": "eslint \"**/*.{js,jsx,json,ts,tsx}\"",
"release:changelog": "standard-version --skip.commit --skip.tag --release-as ",
"test": "echo \"@TODO: tests for react-hibernate\"",
"test:clean": "rimraf coverage-local/",
"test:watch": "echo \"@TODO: tests for react-hibernate\"",
Expand All @@ -60,7 +61,7 @@
"react-reverse-portal": "^2.0.0"
},
"devDependencies": {
"react-hibernate-dev-helpers": "^0.0.4"
"react-hibernate-dev-helpers": "^0.1.0"
},
"peerDependencies": {
"react": ">=16.8.0",
Expand Down
4 changes: 4 additions & 0 deletions packages/react-pauseable-containers/CHANGELOG.md
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.1.0](https://github.com/spautz/react-hibernate/compare/v0.0.4...v0.1.0) (2020-08-16)

Update dependencies, devDependencies, and project config. No breaking changes in the library itself.

### [0.0.4](https://github.com/spautz/react-hibernate/compare/v0.0.3...v0.0.4) (2020-06-30)

### Features
Expand Down
9 changes: 4 additions & 5 deletions packages/react-pauseable-containers/package.json
@@ -1,6 +1,6 @@
{
"name": "react-pauseable-containers",
"version": "0.0.4",
"version": "0.1.0",
"description": "Prevent React children from rerendering",
"keywords": [
"hibernate",
Expand Down Expand Up @@ -53,18 +53,17 @@
"format:checkup": "prettier --list-different \"**/*.*\"",
"lint": "eslint \"**/*.{js,jsx,json,ts,tsx}\"",
"release:changelog": "standard-version --skip.commit --skip.tag --release-as ",
"release:tag": "standard-version --sign --skip.changelog --release-as ",
"test": "echo \"@TODO: tests for pauseable-containers\"",
"test:clean": "rimraf coverage-local/",
"test:watch": "echo \"@TODO: tests for pauseable-containers\"",
"types": "tsc --noEmit --p tsconfig.json --jsx react"
},
"dependencies": {
"prop-types": "^15.7.2",
"redux-pauseable-store": "^0.0.4"
"redux-pauseable-store": "^0.1.0"
},
"devDependencies": {
"react-hibernate-dev-helpers": "^0.0.4"
"react-hibernate-dev-helpers": "^0.1.0"
},
"peerDependencies": {
"react": ">=16.8.0",
Expand All @@ -76,5 +75,5 @@
"optional": true
}
},
"gitHead": "6473775e5e65bee0b3c5a2c2b1b27061bf5d4579"
"gitHead": "ea7266569cd13e20be67f2ac7d50758a1151254a"
}
11 changes: 11 additions & 0 deletions packages/react-router-hibernate/CHANGELOG.md
@@ -0,0 +1,11 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.1.0](https://github.com/spautz/react-hibernate/compare/v0.0.4...v0.1.0) (2020-08-16)

Update dependencies, devDependencies, and project config. No breaking changes in the library itself.

### 0.0.2 (2020-02-28)

- Initial release for react-router-hibernate
9 changes: 4 additions & 5 deletions packages/react-router-hibernate/package.json
@@ -1,6 +1,6 @@
{
"name": "react-router-hibernate",
"version": "0.0.4",
"version": "0.1.0",
"description": "Restore previously-unmounted routes -- state and all -- when you return",
"keywords": [
"hibernate",
Expand Down Expand Up @@ -51,8 +51,7 @@
"format": "prettier --write \"**/*.*\"",
"format:checkup": "prettier --list-different \"**/*.*\"",
"lint": "eslint \"**/*.{js,jsx,json,ts,tsx}\"",
"release:changelog": "standard-version --skip.commit",
"release:tag": "standard-version --sign --skip.changelog --release-as ",
"release:changelog": "standard-version --skip.commit --skip.tag --release-as ",
"test": "jest --coverage",
"test:clean": "rimraf coverage-local/",
"test:watch": "jest --coverage --watch",
Expand All @@ -66,7 +65,7 @@
},
"devDependencies": {
"@types/react-router-dom": "^5.1.5",
"react-hibernate-dev-helpers": "^0.0.4",
"react-hibernate-dev-helpers": "^0.1.0",
"react-router-dom": "^5.2.0"
},
"peerDependencies": {
Expand All @@ -75,5 +74,5 @@
"react-router": ">=5.0.0",
"react-router-dom": ">=5.0.0"
},
"gitHead": "6473775e5e65bee0b3c5a2c2b1b27061bf5d4579"
"gitHead": "ea7266569cd13e20be67f2ac7d50758a1151254a"
}
4 changes: 4 additions & 0 deletions packages/redux-pauseable-store/CHANGELOG.md
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.1.0](https://github.com/spautz/react-hibernate/compare/v0.0.4...v0.1.0) (2020-08-16)

Update dependencies, devDependencies, and project config. No breaking changes in the library itself.

### [0.0.4](https://github.com/spautz/react-hibernate/compare/v0.0.3...v0.0.4) (2020-06-30)

### Features
Expand Down
6 changes: 2 additions & 4 deletions packages/redux-pauseable-store/package.json
@@ -1,6 +1,6 @@
{
"name": "redux-pauseable-store",
"version": "0.0.4",
"version": "0.1.0",
"description": "Derive one redux store from another, then pause it",
"keywords": [
"hibernate",
Expand Down Expand Up @@ -53,15 +53,13 @@
"format:checkup": "prettier --list-different \"**/*.*\"",
"lint": "eslint \"**/*.{js,jsx,json,ts,tsx}\"",
"release:changelog": "standard-version --skip.commit --skip.tag --release-as ",
"release:tag": "standard-version --sign --skip.changelog --release-as ",
"test": "jest --coverage",
"test:clean": "rimraf coverage-local/",
"test:watch": "jest --coverage --watch",
"types": "tsc --noEmit --p tsconfig.json --jsx react"
},
"dependencies": {},
"peerDependencies": {
"redux": "^4.0.0"
},
"gitHead": "6473775e5e65bee0b3c5a2c2b1b27061bf5d4579"
"gitHead": "ea7266569cd13e20be67f2ac7d50758a1151254a"
}

0 comments on commit b1b7a55

Please sign in to comment.