Skip to content

Commit

Permalink
fix: force new version test w/ CircleCI + Semantic Release
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyrb committed Aug 20, 2020
1 parent 85a80af commit 14fe657
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions README.md
Expand Up @@ -158,6 +158,38 @@ Running the build:
Automatically running the build and unit tests after each source change:
> npm run watch
## Publish

This library uses `semantic-release` to publish packages. The syntax of commits against the `master` branch
determine how the new version calculated.

<table>
<tr>
<th>Example Commit</th>
<th>Release Type</th>
</tr>
<tr>
<td>fix(pencil): stop graphite breaking when too much pressure applied</td>
<td>Patch Release</td>
</tr>
<tr>
<td>feat(pencil): add 'graphiteWidth' option</td>
<td>Feature Release</td>
</tr>
<tr>
<td>
perf(pencil): remove graphiteWidth option<br />
<br />
BREAKING CHANGE: The graphiteWidth option has been removed.
The default graphite width of 10mm is always used for performance reasons.
</td>
<td>
Major Breaking Release
</td>
</tr>
</table>


Backlog
------------

Expand Down

0 comments on commit 14fe657

Please sign in to comment.