diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml new file mode 100644 index 0000000..462146d --- /dev/null +++ b/.github/workflows/add-to-project.yml @@ -0,0 +1,18 @@ +name: Add new issues to org project + +on: + issues: + types: + - opened + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.5.0 + with: + # You can target a project in a different organization + # to the issue + project-url: https://github.com/orgs/dropecho/projects/4 + github-token: ${{ secrets.GH_PROJECTS_ACTIONS_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index a55b4f2..bf2f520 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [0.13.0](https://github.com/dropecho/storygen/compare/0.12.1...0.13.0) (2023-03-29) + + +### Features + +* Add map function, misc cleanup. ([ee56f60](https://github.com/dropecho/storygen/commit/ee56f604ad6eca641492d059b3bf76c7a456e3ba)) + ## [0.12.1](https://github.com/dropecho/storygen/compare/0.12.0...0.12.1) (2023-01-07) diff --git a/haxelib.json b/haxelib.json index fe14911..476e637 100644 --- a/haxelib.json +++ b/haxelib.json @@ -10,8 +10,8 @@ "contributors": [ "vantreeseba" ], - "version": "0.12.1", - "releasenote": "Release version 0.12.1. See CHANGELOG.md for details.", + "version": "0.13.0", + "releasenote": "Release version 0.13.0. See CHANGELOG.md for details.", "tags": [ "text", "game", diff --git a/package.json b/package.json index 040ea05..37808ea 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@dropecho/storygen", - "version": "0.12.1", + "version": "0.13.0", "description": "", "author": "vantreeseba ", "repository": "github:dropecho/storygen",