Skip to content

Commit 4bed054

Browse files
authored
Merge branch 'master' into feat/expose-parser-writer-opts
2 parents 2442808 + 7b7ed56 commit 4bed054

24 files changed

+10615
-260
lines changed
+3-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
---
22
name: Ask a Question
3-
about: '"How can I X?" – ask a question about how to use standard-version.'
4-
title: ''
3+
about: '"How can I X?" – ask a question about how to use commit-and-tag-version.'
4+
title: ""
55
labels: question
6-
assignees: ''
7-
6+
assignees: ""
87
---
9-
10-

.github/ISSUE_TEMPLATE/bug-report.md

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
22
name: Bug Report
33
about: Use this template if something isn't working as expected.
4-
title: ''
4+
title: ""
55
labels: bug
6-
assignees: ''
7-
6+
assignees: ""
87
---
98

109
**Describe the bug**
@@ -13,18 +12,17 @@ A clear and concise description of what the bug is.
1312
**Current behavior**
1413
A clear and concise description of the behavior.
1514

16-
1715
**Expected behavior**
1816
A clear and concise description of what you expected to happen.
1917

20-
21-
2218
**Environment**
23-
- `standard-version` version(s): [e.g. v6.0.0, v8.0.0, master]
19+
20+
- `commit-and-tag-version` version(s): [e.g. v6.0.0, v8.0.0, master]
2421
- Node/npm version: [e.g. Node 10/npm 6]
2522
- OS: [e.g. OSX 10.13.4, Windows 10]
2623

2724
**Possible Solution**
25+
2826
<!--- If you have suggestions on a fix for the bug -->
2927

3028
**Additional context**

.github/workflows/ci.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,24 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
node: [10, 12, 14]
13+
node: [14, 16, 18]
1414
os: [ubuntu-latest, windows-latest]
1515
env:
1616
OS: ${{ matrix.os }}
1717
NODE_VERSION: ${{ matrix.node }}
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
- run: git fetch --prune --unshallow
2121
- run: git config --global user.name 'Actions'
2222
- run: git config --global user.email '[email protected]'
23-
- uses: actions/setup-node@v2
23+
- uses: actions/setup-node@v3
2424
with:
2525
node-version: ${{ matrix.node }}
2626
- run: node --version
2727
- run: npm install --engine-strict
2828
- run: npm test
2929
- run: npm run coverage
3030
- name: Codecov
31-
uses: codecov/codecov-action@v2
31+
uses: codecov/codecov-action@v3
3232
with:
3333
env_vars: OS, NODE_VERSION

.github/workflows/release-please.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ jobs:
1212
with:
1313
token: ${{ secrets.GITHUB_TOKEN }}
1414
release-type: node
15-
package-name: standard-version
15+
package-name: commit-and-tag-version
1616
# The logic below handles the npm publication:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
# these if statements ensure that a publication only occurs when
1919
# a new release is created:
2020
if: ${{ steps.release.outputs.release_created }}
21-
- uses: actions/setup-node@v1
21+
- uses: actions/setup-node@v3
2222
with:
23-
node-version: 12
24-
registry-url: 'https://external-dot-oss-automation.appspot.com'
23+
node-version: 16
24+
registry-url: 'https://registry.npmjs.org'
2525
if: ${{ steps.release.outputs.release_created }}
2626
- run: npm ci
2727
if: ${{ steps.release.outputs.release_created }}

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,3 @@ npm-debug.log
1414

1515
# coverage
1616
coverage
17-
package-lock.json

CHANGELOG.md

+53-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,58 @@
11
# Changelog
22

3-
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.
3+
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4+
5+
### [10.0.1](https://github.com/absolute-version/commit-and-tag-version/compare/v10.0.0...v10.0.1) (2022-05-28)
6+
7+
8+
### Bug Fixes
9+
10+
* No longer warn inappropriately when a custom updater is provided as an object ([5eb8886](https://github.com/absolute-version/commit-and-tag-version/commit/5eb8886a56c6b14c13544192edb3d0e18f91184a))
11+
12+
## [10.0.0](https://github.com/absolute-version/commit-and-tag-version/compare/v9.6.0...v10.0.0) (2022-05-25)
13+
14+
15+
### ⚠ BREAKING CHANGES
16+
17+
* Drop support for node 10 and 12, support node 16 and 18
18+
19+
### Bug Fixes
20+
21+
* **deps:** update dependency yargs to v17 ([d190c51](https://github.com/absolute-version/commit-and-tag-version/commit/d190c51507026adefe640cdd75f0a643afd81b87))
22+
23+
24+
### Build System
25+
26+
* Drop support for node 10 and 12, support node 16 and 18 ([0f75115](https://github.com/absolute-version/commit-and-tag-version/commit/0f751158c2df9cbf7a2c16bef55a5de084f0d17d))
27+
28+
## [9.6.0](https://github.com/absolute-version/commit-and-tag-version/compare/v9.5.0...v9.6.0) (2022-05-25)
29+
30+
31+
### Features
32+
33+
* **tag:** add an option to force tag replacement ([df5a94a](https://github.com/absolute-version/commit-and-tag-version/commit/df5a94a978c6966e334ec0e4c9f082fae8deb4f9))
34+
35+
36+
### Bug Fixes
37+
38+
* Combining both release-as and prerelease now doesn't break package ([5ecfa2e](https://github.com/absolute-version/commit-and-tag-version/commit/5ecfa2e250e134dbfd3ce8d3c6e9d3be28f6f2b8))
39+
* Fallback to git tag if no version in package file ([57e7091](https://github.com/absolute-version/commit-and-tag-version/commit/57e70916c8afbce16347ed1f710984f5a483152a))
40+
* No longer skips the commit if changelog and bump are both skipped but `commitAll` is set ([08a0121](https://github.com/absolute-version/commit-and-tag-version/commit/08a01212f0eea7ee5e454adf560755df67234d2f))
41+
* Use relative path from .gitignore to avoid files matching inappropriately ([d2491bc](https://github.com/absolute-version/commit-and-tag-version/commit/d2491bc8b61a60cd438045ac409278f5b84621dd))
42+
* When a custom updater reports a version other than the new computed semver, that version is now correctly reported in log output ([f2e83bf](https://github.com/absolute-version/commit-and-tag-version/commit/f2e83bfac711ac5ba4de940d654269af69fc7312))
43+
44+
## [9.5.0](https://github.com/conventional-changelog/standard-version/compare/v9.4.0...v9.5.0) (2022-05-15)
45+
46+
47+
### Features
48+
49+
* **deprecated:** add deprecation message ([#907](https://github.com/conventional-changelog/standard-version/issues/907)) ([61b41fa](https://github.com/conventional-changelog/standard-version/commit/61b41fa47ef690f55b92e2edb82fe554e3c1e13a))
50+
51+
52+
### Bug Fixes
53+
54+
* **deps:** update dependency conventional-changelog to v3.1.25 ([#865](https://github.com/conventional-changelog/standard-version/issues/865)) ([4c938a2](https://github.com/conventional-changelog/standard-version/commit/4c938a2baac11385d655144429bc73b2199bb027))
55+
* **deps:** update dependency conventional-changelog-conventionalcommits to v4.6.3 ([#866](https://github.com/conventional-changelog/standard-version/issues/866)) ([6c75ed0](https://github.com/conventional-changelog/standard-version/commit/6c75ed0b1456913ae7e4d6fe8532fb4106df1bdf))
456

557
## [9.4.0](https://github.com/conventional-changelog/standard-version/compare/v9.3.2...v9.4.0) (2021-12-31)
658

0 commit comments

Comments
 (0)