Skip to content

Commit

Permalink
build: add changelog script
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Mar 16, 2024
1 parent bd65ef5 commit 6ab450b
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 0 deletions.
81 changes: 81 additions & 0 deletions changelog.mustache
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
# Changelog

{{#tags}}

{{#ifReleaseTag .}}
"{{.}}" is a release tag
{{/ifReleaseTag}}

## [{{name}}](https://github.com/bsorrentino/pdf-tools/releases/tag/{{name}}) ({{tagDate .}})

{{#ifContainsType commits type='feat'}}
### Features

{{#commits}}
{{#ifCommitType . type='feat'}}
* {{#eachCommitScope .}} **{{.}}** {{/eachCommitScope}} {{{commitDescription .}}} ([{{hash}}](https://github.com/bsorrentino/pdf-tools/commit/{{hashFull}}))
{{#messageBodyItems}}
> {{.}}
{{/messageBodyItems}}

{{/ifCommitType}}
{{/commits}}
{{/ifContainsType}}

{{#ifContainsType commits type='fix'}}
### Bug Fixes

{{#commits}}
{{#ifCommitType . type='fix'}}
- {{#eachCommitScope .}} **{{.}}** {{/eachCommitScope}} {{{commitDescription .}}} ([{{hash}}](https://github.com/bsorrentino/pdf-tools/commit/{{hashFull}}))
{{#messageBodyItems}}
> {{.}}
{{/messageBodyItems}}

{{/ifCommitType}}
{{/commits}}
{{/ifContainsType}}

{{#ifContainsType commits type='docs'}}
### Documentation

{{#commits}}
{{#ifCommitType . type='docs'}}
- {{#eachCommitScope .}} **{{.}}** {{/eachCommitScope}} {{{commitDescription .}}} ([{{hash}}](https://github.com/bsorrentino/pdf-tools/commit/{{hashFull}}))
{{#messageBodyItems}}
> {{.}}
{{/messageBodyItems}}

{{/ifCommitType}}
{{/commits}}
{{/ifContainsType}}

{{#ifContainsType commits type='refactor'}}
### Refactor

{{#commits}}
{{#ifCommitType . type='refactor'}}
- {{#eachCommitScope .}} **{{.}}** {{/eachCommitScope}} {{{commitDescription .}}} ([{{hash}}](https://github.com/bsorrentino/pdf-tools/commit/{{hashFull}}))
{{#messageBodyItems}}
> {{.}}
{{/messageBodyItems}}

{{/ifCommitType}}
{{/commits}}
{{/ifContainsType}}

{{#ifContainsType commits type='build'}}
### ALM

{{#commits}}
{{#ifCommitType . type='build'}}
- {{#eachCommitScope .}} **{{.}}** {{/eachCommitScope}} {{{commitDescription .}}} ([{{hash}}](https://github.com/bsorrentino/pdf-tools/commit/{{hashFull}}))
{{#messageBodyItems}}
> {{.}}
{{/messageBodyItems}}

{{/ifCommitType}}
{{/commits}}
{{/ifContainsType}}

{{/tags}}
12 changes: 12 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "langgraph-swift",
"version": "1.0.0",
"description": "🚀 LangGraph for Swift. A library for building stateful, multi-actor applications with LLMs, built on top of [LangChain-Swift]. > It is a porting of original [LangGraph] from [LangChain AI project][langchain.ai] in Swift fashion",
"main": "index.js",
"scripts": {
"changelog": "git-changelog-command-line -of CHANGELOG.md"
},
"keywords": ["AI", "langgraph", "langchain"],
"author": "bsorrentino <bartolomeo.sorrentino@gmail.com> (http://soulsoftware-bsc.blogspot.it/)",
"license": "MIT"
}

0 comments on commit 6ab450b

Please sign in to comment.