Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

git-changelog-command-line

Package Overview
Dependencies
Maintainers
1
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

git-changelog-command-line - npm Package Compare versions

Comparing version 1.108.3 to 1.109.0

build/libs/git-changelog-command-line-1.109.0-javadoc.jar

2

package.json
{
"version": "1.108.3",
"version": "1.109.0",
"name": "git-changelog-command-line",

@@ -4,0 +4,0 @@ "homepage": "https://github.com/tomasbjerre/git-changelog-command-line",

@@ -105,13 +105,19 @@ # Git Changelog Command Line

```shell
highestTag=$(npx git-changelog-command-line \
highestVersion=$(npx git-changelog-command-line \
--print-highest-version)
highestVersionTag=$(npx git-changelog-command-line \
--print-highest-version-tag)
nextVersion=$(npx git-changelog-command-line \
currentVersion=$(npx git-changelog-command-line \
--patch-version-pattern "^fix.*" \
--print-next-version)
--print-current-version)
if [ "$nextVersion" == "$highestTag" ]; then
if [ -z "$highestVersionTag" ]; then
echo "This is the first version in the repo, using 0.0.1 as version"
currentVersion=0.0.1
else if [ "$currentVersion" == "$highestVersion" ]; then
echo "No changes made that can be released"
else
echo "Changes detected and a new $nextVersion release can be made"
echo "Changes detected and a new $currentVersion release can be made"
fi

@@ -306,6 +312,6 @@ ```

Default: disabled
-glpn, --gitlab-project-name <string> GitLab project name.
-glp, --gitlab-issue-pattern <string> GitLab issue pattern.
<string>: any string
Default:
-glp, --gitlab-issue-pattern <string> GitLab issue pattern.
-glpn, --gitlab-project-name <string> GitLab project name.
<string>: any string

@@ -419,2 +425,6 @@ Default:

Default: disabled
-pf, --path-filters <string> Paths on the
filesystem to filter on. [Supports Multiple occurrences]
<string>: any string
Default: Empty list
-phv, --print-highest-version Print the highest

@@ -421,0 +431,0 @@ version, determined by tags in

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc