Skip to content

Commit

Permalink
Merge pull request #89 from ContentSquare/release/v1.6.0
Browse files Browse the repository at this point in the history
chore: v1.6.0 release
  • Loading branch information
panzerdp authored Dec 15, 2022
2 parents be91ce3 + ee8e807 commit 68fd101
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 25 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,11 @@ To clean all packages and return to a fresh state run `yarn workspaces run clean
2. Run `lerna version` to bump version of packages (that creates a commit and a release tag and push they into the remote repo)
3. Create a PR to merge into `master` then request a review (DO NOT SQUASH or REBASE this PR because if not the tag is lost)
4. Draft a new release titled `v.x.x.x` and describe the change log
5. Build and Package the Chrome extension (do not forget to set env vars) and upload the zip file to the release
6. After merge create another PR to merge master into `ms-word-addin` to update the ms-word addin
7. Publish new Chrome extension release in Chrome Web Store
8. Publish to npm `lerna publish from-package --force-publish`
5. Build the deps locally `yarn build-deps` to set the version env variable and refresh dependencies
6. Build and Package the Chrome extension (do not forget to set env vars) and upload the zip file to the release
7. After merge create another PR to merge master into `ms-word-addin` to update the ms-word addin
8. Publish new Chrome extension release in Chrome Web Store
9. Publish to npm `lerna publish from-package --force-publish`

## Contributors

Expand Down
10 changes: 5 additions & 5 deletions apps/chrome-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chrome-extension",
"version": "1.5.0",
"version": "1.6.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand All @@ -14,10 +14,10 @@
"postinstall": "node scripts/init-env"
},
"dependencies": {
"@readapt/settings": "^1.5.0",
"@readapt/shared-components": "^1.5.0",
"@readapt/text-engine": "^1.5.0",
"@readapt/visual-engine": "^1.5.0",
"@readapt/settings": "^1.6.0",
"@readapt/shared-components": "^1.6.0",
"@readapt/text-engine": "^1.6.0",
"@readapt/visual-engine": "^1.6.0",
"bootstrap": "~4.6.1",
"bootstrap-vue": "~2.22.0",
"core-js": "^3.8.3",
Expand Down
10 changes: 5 additions & 5 deletions apps/ms-word-addin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ms-word-addin",
"version": "1.5.0",
"version": "1.6.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand All @@ -19,10 +19,10 @@
"postinstall": "node scripts/init-env"
},
"dependencies": {
"@readapt/settings": "^1.5.0",
"@readapt/shared-components": "^1.5.0",
"@readapt/text-engine": "^1.5.0",
"@readapt/visual-engine": "^1.5.0",
"@readapt/settings": "^1.6.0",
"@readapt/shared-components": "^1.6.0",
"@readapt/text-engine": "^1.6.0",
"@readapt/visual-engine": "^1.6.0",
"bootstrap": "~4.6.1",
"bootstrap-vue": "~2.22.0",
"core-js": "^3.8.3",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.5.0",
"version": "1.6.0",
"npmClient": "yarn",
"useWorkspaces": true
}
2 changes: 1 addition & 1 deletion packages/dictionaries/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@readapt/dictionaries",
"version": "1.5.0",
"version": "1.6.0",
"types": "dist/index.d.ts",
"main": "",
"targets": {
Expand Down
2 changes: 1 addition & 1 deletion packages/settings/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@readapt/settings",
"version": "1.5.0",
"version": "1.6.0",
"main": "dist/readapt-settings.js",
"module": "dist/readapt-settings.esm.js",
"types": "dist/types/index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions packages/shared-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@readapt/shared-components",
"version": "1.5.0",
"version": "1.6.0",
"main": "dist/readapt-shared-components.common.js",
"module": "dist/readapt-shared-components.common.js",
"types": "dist/types.d.ts",
Expand All @@ -26,8 +26,8 @@
"url": "git+https://github.com/ContentSquare/readapt.git"
},
"dependencies": {
"@readapt/settings": "^1.5.0",
"@readapt/visual-engine": "^1.5.0",
"@readapt/settings": "^1.6.0",
"@readapt/visual-engine": "^1.6.0",
"bootstrap": "~4.6.1",
"bootstrap-vue": "~2.22.0",
"core-js": "^3.8.3"
Expand Down
4 changes: 2 additions & 2 deletions packages/text-engine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@readapt/text-engine",
"version": "1.5.0",
"version": "1.6.0",
"main": "dist/readapt-text-engine.js",
"module": "dist/readapt-text-engine.esm.js",
"types": "dist/index.d.ts",
Expand All @@ -25,6 +25,6 @@
"src/*"
],
"dependencies": {
"@readapt/dictionaries": "^1.5.0"
"@readapt/dictionaries": "^1.6.0"
}
}
6 changes: 3 additions & 3 deletions packages/visual-engine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@readapt/visual-engine",
"version": "1.5.0",
"version": "1.6.0",
"main": "dist/readapt-visual-engine.js",
"module": "dist/readapt-visual-engine.esm.js",
"types": "dist/types/visual-engine/src/index.d.ts",
Expand All @@ -22,8 +22,8 @@
"src/*"
],
"dependencies": {
"@readapt/settings": "^1.5.0",
"@readapt/text-engine": "^1.5.0",
"@readapt/settings": "^1.6.0",
"@readapt/text-engine": "^1.6.0",
"lodash": "^4.17.21"
},
"devDependencies": {
Expand Down

0 comments on commit 68fd101

Please sign in to comment.