Skip to content

Commit 783d4ee

Browse files
0.2.0 [skip ci]
1 parent 063c82b commit 783d4ee

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changes
22

3+
## [0.2.0](https://github.com/prantlf/changever/compare/v0.1.0...v0.2.0) (2023-12-17)
4+
5+
### Features
6+
7+
* Propagate dry run to npm ([5d34bf3](https://github.com/prantlf/changever/commit/5d34bf3216c515b361b448150f2c93d698e01592))
8+
* Authenticate npm using process environment ([063c82b](https://github.com/prantlf/changever/commit/063c82bf725e6b5f1734b6087d7d91a15872e4c0))
9+
10+
### Bug Fixes
11+
12+
* Use proper parameter for npm verbosity ([0d1e210](https://github.com/prantlf/changever/commit/0d1e21074fe9fc7baf4cdd2770e35d1dee722a19))
13+
314
## [0.1.0](https://github.com/prantlf/changever/compare/v0.0.0...v0.1.0) (2023-12-16)
415

516
### Features

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "changever",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "Changelog-driven version manager - helps with generating changelog and publishing a new version of a Node.js package.",
55
"author": {
66
"name": "Ferdinand Prantl",

src/changever.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import prantlf.cli { Cli, Env, run }
22
import prantlf.debug { new_debug }
33

4-
const version = '0.1.0'
4+
const version = '0.2.0'
55

66
const usage = 'Changelog-driven version manager - helps with generating changelog and publishing a new version of a Node.js package.
77

v.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Module {
22
name: 'changever'
33
description: 'Changelog-driven version manager - helps with generating changelog and publishing a new version of a Node.js package.'
4-
version: '0.1.0'
4+
version: '0.2.0'
55
license: 'MIT'
66
dependencies: [
77
'prantlf.cli', 'prantlf.debug', 'prantlf.github', 'prantlf.jany',

0 commit comments

Comments
 (0)