@immugio/three-math-extensions 0.0.12 → 0.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -7,7 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
9
9
 
10
- ## [0.0.12](https://github.com/Immugio/three-math-extensions/compare/0.0.11...0.0.12)
10
+ ## [0.0.13](https://github.com/Immugio/three-math-extensions/compare/0.0.12...0.0.13)
11
+
12
+ ### Commits
13
+
14
+ - Add release instructions into README.md [`03653b1`](https://github.com/Immugio/three-math-extensions/commit/03653b1ffa55be606d3f9cd588e28a6084462c2e)
15
+
16
+ ## [0.0.12](https://github.com/Immugio/three-math-extensions/compare/0.0.11...0.0.12) - 2022-12-21
11
17
 
12
18
  ### Commits
13
19
 
package/README.md CHANGED
@@ -1,3 +1,11 @@
1
1
  # Set of utilities for 2d and 3d line math built on top of three.js
2
2
 
3
- [![Build](https://github.com/Immugio/three-math-extensions/actions/workflows/build.yml/badge.svg)](https://github.com/Immugio/three-math-extensions/actions/workflows/build.yml)
3
+ [![Build](https://github.com/Immugio/three-math-extensions/actions/workflows/build.yml/badge.svg)](https://github.com/Immugio/three-math-extensions/actions/workflows/build.yml)
4
+
5
+ ### How to release:
6
+ - Commit and push all changes for this release.
7
+ - Make sure that the last release commit has a tag that matches the latest release number in the format "0.0.11". This step should have been completed in the previous release. It's only mentioned here in case it's for any reason missing.
8
+ - Bump up version in package.json e.g. "0.0.11" -> "0.0.12"
9
+ - Run "version" script, it should add the new commits since the last release into `CHANGELOG.md`
10
+ - Commit and push the changes in `package.json` and `CHANGELOG.md`, ideally, call the commit as the new release e.g. "`0.0.12`". This is not necessary but makes it easier to find
11
+ - NOW THE CRITICAL PART - **tag the commit** with the new version number. In this example "`0.0.12`" and push. This is required for CI to build and release and publish to npm.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@immugio/three-math-extensions",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "description": "Set of utilities for 2d and 3d line math built on top of three.js",
5
5
  "author": "Jan Mikeska <janmikeska@gmail.com>",
6
6
  "license": "ISC",