Skip to content

Commit

Permalink
Merge branch 'main' into feat/sub-dir
Browse files Browse the repository at this point in the history
# Conflicts:
#	package.json
#	pnpm-lock.yaml
  • Loading branch information
aa900031 committed Jun 21, 2023
2 parents 2da7234 + ec858d1 commit 4b15528
Show file tree
Hide file tree
Showing 6 changed files with 396 additions and 342 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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.

## v0.5.3

[compare changes](https://github.com/unjs/changelogen/compare/v0.5.2...v0.5.3)

## v0.5.2

[compare changes](https://github.com/unjs/changelogen/compare/v0.5.1...v0.5.2)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ npx changelogen@latest [...args] [--dir <dir>]
- `--dir`: Path to git repository. When not provided, **current working directory** will be used as as default.
- `--output`: Changelog file name to create or update. Defaults to `CHANGELOG.md` and resolved relative to dir. Use `--no-output` to write to console only.
- `--bump`: Determine semver change and update version in `package.json`.
- `--release`. Bumps version in `package.json` and creates commit and git tags using local `git`. You can disable commit using `--no-commit` and tag using `--no-tag`.
- `--release`. Bumps version in `package.json` and creates commit and git tags using local `git`. You can disable commit using `--no-commit` and tag using `--no-tag`. You can enable the automatic push of the new tag and release commit to your git repository by adding `--push`.
- `-r`: Release as specific version.
- `--major`: Bump as a semver-major version
- `--minor`: Bump as a semver-minor version
Expand Down
27 changes: 14 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"name": "changelogen",
"version": "0.5.2",
"version": "0.5.3",
"description": "Generate Beautiful Changelogs using Conventional Commits",
"repository": "unjs/changelogen",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
Expand All @@ -32,9 +33,9 @@
"test": "pnpm lint && vitest run --coverage"
},
"dependencies": {
"c12": "^1.2.0",
"colorette": "^2.0.19",
"consola": "^2.15.3",
"c12": "^1.4.1",
"colorette": "^2.0.20",
"consola": "^3.1.0",
"convert-gitmoji": "^0.1.3",
"execa": "^7.1.1",
"mri": "^1.2.0",
Expand All @@ -44,22 +45,22 @@
"pathe": "^1.1.0",
"pkg-types": "^1.0.2",
"scule": "^1.0.0",
"semver": "^7.3.8",
"semver": "^7.5.0",
"ufo": "^1.1.1",
"yaml": "^2.2.1"
"yaml": "^2.2.2"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/node": "^18.16.3",
"@types/semver": "^7.3.13",
"@vitest/coverage-c8": "^0.29.8",
"eslint": "^8.38.0",
"@vitest/coverage-c8": "^0.30.1",
"eslint": "^8.39.0",
"eslint-config-unjs": "^0.1.0",
"jiti": "^1.18.2",
"prettier": "^2.8.7",
"prettier": "^2.8.8",
"standard-version": "^9.5.0",
"typescript": "^5.0.4",
"unbuild": "^1.2.0",
"vitest": "^0.29.8"
"unbuild": "^1.2.1",
"vitest": "^0.30.1"
},
"packageManager": "pnpm@8.1.1"
"packageManager": "pnpm@8.3.1"
}
Loading

0 comments on commit 4b15528

Please sign in to comment.