diff --git a/README.md b/README.md index a78deb78c..463fd69f6 100644 --- a/README.md +++ b/README.md @@ -31,16 +31,18 @@ Before getting started with ml5.js, review our [Code of Conduct](https://github. +

-* You can use the latest version (0.7.1) by adding it to the head section of your HTML document: +* You can use the latest version (0.7.2) by adding it to the head section of your HTML document: -**v0.7.1** +**v0.7.2** - +

+ diff --git a/docs/styleguide/maintenance-notes.md b/docs/styleguide/maintenance-notes.md index 52785bdab..40167b9d1 100644 --- a/docs/styleguide/maintenance-notes.md +++ b/docs/styleguide/maintenance-notes.md @@ -10,7 +10,7 @@ ## Overview: -1. Create a new branch from `development` with a name that matches the new release version: `v<#>.<#>.<#>` +1. Create a new branch from `main` with a name that matches the new release version: `v<#>.<#>.<#>` ```sh $ (development): git checkout -b v0.4.2 ``` @@ -26,23 +26,15 @@ $ (v0.4.2): git commit -m "bumps version and updates ml5 version number" $ (v0.4.2): git push origin v0.4.2 ``` -3. Make a **Pull Request** to merge `v<#>.<#>.<#>` to `development`. Wait for tests to pass. **Squash and merge**. +3. Make a **Pull Request** to merge `v<#>.<#>.<#>` to `main`. Wait for tests to pass. **Squash and merge**. ```sh # Once you've squashed and merged `v0.4.2` to `development`... # Step 1: switch to your development branch and pull in those changes - $ (v0.4.2): git checkout development + $ (v0.4.2): git checkout main $ (development): git fetch $ (development): git pull ``` -4. With these changes now in `development` make a new **Pull Request** to merge `development` into `release`. Wait for tests to pass. **Squash and merge**. - ```sh - # Once you've squashed and merged `development` to `release`... - # Step 1: switch to your release branch and pull in those changes - $ (development): git checkout release - $ (release): git fetch - $ (release): git pull - ``` -5. **Install the dependencies** to ensure you've got all the latest dependencies and **Build the library** to prepare for the release. +5. **Install the dependencies**: With these changes now in `main`, we need to ensure you've got all the latest dependencies and **Build the library** to prepare for the release. ```sh $ (release): npm install $ (release): npm run build diff --git a/package-lock.json b/package-lock.json index a75ef5ba2..6063617b8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ml5", - "version": "0.6.0", + "version": "0.7.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index e6211e4da..cb60a0b04 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ml5", - "version": "0.7.1", + "version": "0.7.2", "description": "A friendly machine learning library for the web.", "main": "dist/ml5.min.js", "directories": {