Skip to content

Commit

Permalink
chore(release): v3.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Nov 22, 2023
1 parent 69f99ee commit 2b5a6d8
Show file tree
Hide file tree
Showing 10 changed files with 52 additions and 9 deletions.
40 changes: 40 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,43 @@
# [3.10.0](https://github.com/ridedott/release-me-action/compare/v3.9.0...v3.10.0) (2023-11-22)

### Chores

- **deps-dev:** bump @commitlint/cli from 18.4.1 to 18.4.2
([00f6e4d](https://github.com/ridedott/release-me-action/commit/00f6e4db0c283dbd7c752e2cca920e4a34d3d117))
- **deps-dev:** bump @commitlint/cli from 18.4.2 to 18.4.3
([ec6a449](https://github.com/ridedott/release-me-action/commit/ec6a449c3f971acbd013a16ce4a0711f39f57d6b))
- **deps-dev:** bump @commitlint/config-conventional from 18.4.0 to 18.4.2
([af9a418](https://github.com/ridedott/release-me-action/commit/af9a4187e4a37c5983c6cd0562e489a449207436))
- **deps-dev:** bump @commitlint/config-conventional from 18.4.2 to 18.4.3
([b638762](https://github.com/ridedott/release-me-action/commit/b6387627c9d94ef6dc7ff7c4f34d3c9afcb64223))
- **deps-dev:** bump @ridedott/eslint-config from 2.27.15 to 2.27.16
([327129f](https://github.com/ridedott/release-me-action/commit/327129f777e9f5cee9b054032e396fda1c70bac4))
- **deps-dev:** bump @swc/core from 1.3.96 to 1.3.99
([b973579](https://github.com/ridedott/release-me-action/commit/b973579f186b09f5c907b0cb3f6acd5c8bdd73e9))
- **deps-dev:** bump @types/conventional-changelog-writer from 4.0.9 to 4.0.10
([95bc9b6](https://github.com/ridedott/release-me-action/commit/95bc9b63018709290adf37406ee5d2fcb995d24a))
- **deps-dev:** bump @types/hapi\_\_joi from 17.1.13 to 17.1.14
([b5e9b86](https://github.com/ridedott/release-me-action/commit/b5e9b8653b542b3e02058c209473c6722428f1ed))
- **deps-dev:** bump @types/jest from 29.5.8 to 29.5.9
([e25b5f2](https://github.com/ridedott/release-me-action/commit/e25b5f2c89180a61e009334560b95e45d18af6fd))
- **deps-dev:** bump @types/jest from 29.5.9 to 29.5.10
([2a73aa5](https://github.com/ridedott/release-me-action/commit/2a73aa562983608ff3340e9602d2446c90d40dbc))
- **deps-dev:** bump @types/node from 20.9.0 to 20.9.1
([895789a](https://github.com/ridedott/release-me-action/commit/895789afdc82b2c9cd6fec88156a00ba926c20eb))
- **deps-dev:** bump @types/node from 20.9.1 to 20.9.2
([19030e8](https://github.com/ridedott/release-me-action/commit/19030e88239e53b2622a4e508ea9852c3dc06a7b))
- **deps-dev:** bump @types/node from 20.9.2 to 20.9.3
([d0ac2f8](https://github.com/ridedott/release-me-action/commit/d0ac2f88aa8c280c93c166e970876080ec4665e6))
- **deps-dev:** bump @types/node from 20.9.3 to 20.9.4
([e2aebb5](https://github.com/ridedott/release-me-action/commit/e2aebb51ad8f6b727a88ddf76d3179970e1c8153))
- **deps-dev:** bump eslint from 8.53.0 to 8.54.0
([bc540b3](https://github.com/ridedott/release-me-action/commit/bc540b38e86fd020e26dba0b7ae6e424fcc52d31))

### Features

- add pkg-root option
([69f99ee](https://github.com/ridedott/release-me-action/commit/69f99ee78ef1905312887053a546df7ec4e97a12))

# [3.9.0](https://github.com/ridedott/release-me-action/compare/v3.8.6...v3.9.0) (2023-11-15)

### Chores
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/release.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion dist/utilities/generatePlugins.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import type { PluginSpec } from 'semantic-release';
import type { ReleaseRule } from './inputProcessors.js';
export declare const generatePlugins: ({ commitAssets, disableChangeLog, isNodeModule, releaseAssets, releaseRules, }: {
export declare const generatePlugins: ({ commitAssets, disableChangeLog, isNodeModule, packageRoot, releaseAssets, releaseRules, }: {
commitAssets: string[];
disableChangeLog?: boolean | undefined;
isNodeModule: boolean;
packageRoot: string;
releaseAssets: string[];
releaseRules: ReleaseRule[];
}) => PluginSpec[];
Expand Down
2 changes: 1 addition & 1 deletion dist/utilities/generatePlugins.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions dist/utilities/inputProcessors.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export declare enum InputParameters {
DisableChangelog = "disable-changelog",
DryRun = "dry-run",
NodeModule = "node-module",
PackageRoot = "pkg-root",
ReleaseAssets = "release-assets",
ReleaseBranches = "release-branches",
ReleaseRules = "release-rules",
Expand All @@ -29,6 +30,7 @@ export interface ReleaseRule {
export declare const DEFAULT_RELEASE_RULES: ReleaseRule[];
export declare const processInputAdditionalPlugins: () => AdditionalPluginsSpec | undefined;
export declare const processInputNodeModule: () => boolean;
export declare const processInputPackageRoot: () => string;
export declare const processInputDisableChangelog: () => boolean;
export declare const processInputDryRun: () => boolean;
export declare const processInputReleaseBranches: () => BranchSpec[] | undefined;
Expand Down
2 changes: 1 addition & 1 deletion dist/utilities/inputProcessors.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,5 +109,5 @@
"types": "tsc --noEmit"
},
"type": "module",
"version": "3.9.0"
"version": "3.10.0"
}

0 comments on commit 2b5a6d8

Please sign in to comment.