├── .github ├── dependabot.yml └── workflows │ ├── cron.yml │ ├── main.yml │ └── pull_request.yml ├── .gitignore ├── .npmrc ├── CHANGELOG.md ├── README.md ├── bin ├── index.js └── install.js ├── index.html ├── media ├── banner.jpg ├── headline.png ├── headline.svg ├── logo.jpg ├── logo.png └── logo.sketch ├── package.json └── test └── install.js /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: npm 4 | directory: '/' 5 | schedule: 6 | interval: daily 7 | - package-ecosystem: 'github-actions' 8 | directory: '/' 9 | schedule: 10 | # Check for updates to GitHub Actions every weekday 11 | interval: 'daily' 12 | -------------------------------------------------------------------------------- /.github/workflows/cron.yml: -------------------------------------------------------------------------------- 1 | # name: cron 2 | 3 | # on: 4 | # schedule: 5 | # # Cron job every Monday at 12:00 6 | # # https://crontab.guru/every-monday 7 | # - cron: '0 0 * * MON' 8 | 9 | # jobs: 10 | # test: 11 | # runs-on: ubuntu-latest 12 | # steps: 13 | # - name: Checkout 14 | # uses: actions/checkout@v4 15 | # with: 16 | # token: ${{ secrets.GH_TOKEN }} 17 | # - name: Setup Node.js 18 | # uses: actions/setup-node@v4 19 | # with: 20 | # node-version: lts/* 21 | # - name: Setup PNPM 22 | # uses: pnpm/action-setup@v4 23 | # with: 24 | # version: latest 25 | # run_install: true 26 | # run: npm install --no-package-lock 27 | # - name: Cron 28 | # run: | 29 | # git config --global user.email ${{ secrets.GIT_EMAIL }} 30 | # git config --global user.name ${{ secrets.GIT_USERNAME }} 31 | # npm run cronjob 32 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: main 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | 8 | jobs: 9 | contributors: 10 | if: "${{ github.event.head_commit.message != 'build: contributors' }}" 11 | runs-on: ubuntu-latest 12 | steps: 13 | - name: Checkout 14 | uses: actions/checkout@v5 15 | with: 16 | fetch-depth: 0 17 | token: ${{ secrets.GITHUB_TOKEN }} 18 | - name: Setup Node.js 19 | uses: actions/setup-node@v6 20 | with: 21 | node-version: lts/* 22 | - name: Contributors 23 | run: | 24 | git config --global user.email ${{ secrets.GIT_EMAIL }} 25 | git config --global user.name ${{ secrets.GIT_USERNAME }} 26 | npm run contributors 27 | - name: Push changes 28 | run: | 29 | git push origin ${{ github.head_ref }} 30 | 31 | release: 32 | if: | 33 | !startsWith(github.event.head_commit.message, 'chore(release):') && 34 | !startsWith(github.event.head_commit.message, 'docs:') && 35 | !startsWith(github.event.head_commit.message, 'ci:') 36 | needs: [contributors] 37 | runs-on: ubuntu-latest 38 | steps: 39 | - name: Checkout 40 | uses: actions/checkout@v5 41 | with: 42 | token: ${{ secrets.GITHUB_TOKEN }} 43 | - name: Setup Node.js 44 | uses: actions/setup-node@v6 45 | with: 46 | node-version: lts/* 47 | - name: Setup PNPM 48 | uses: pnpm/action-setup@v4 49 | with: 50 | version: latest 51 | run_install: true 52 | - name: Test 53 | run: pnpm test 54 | - name: Report 55 | run: npx c8 report --reporter=text-lcov > coverage/lcov.info 56 | - name: Coverage 57 | uses: coverallsapp/github-action@main 58 | with: 59 | github-token: ${{ secrets.GITHUB_TOKEN }} 60 | - name: Release 61 | env: 62 | GH_TOKEN: ${{ secrets.GH_TOKEN }} 63 | NPM_TOKEN: ${{ secrets.NPM_TOKEN }} 64 | run: | 65 | git config --global user.email ${{ secrets.GIT_EMAIL }} 66 | git config --global user.name ${{ secrets.GIT_USERNAME }} 67 | git pull origin master 68 | pnpm run release 69 | -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- 1 | name: pull_request 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | pull_request: 8 | branches: 9 | - master 10 | 11 | jobs: 12 | test: 13 | if: github.ref != 'refs/heads/master' 14 | runs-on: ubuntu-latest 15 | steps: 16 | - name: Checkout 17 | uses: actions/checkout@v5 18 | with: 19 | token: ${{ secrets.GITHUB_TOKEN }} 20 | - name: Setup Node.js 21 | uses: actions/setup-node@v6 22 | with: 23 | node-version: lts/* 24 | - name: Setup PNPM 25 | uses: pnpm/action-setup@v4 26 | with: 27 | version: latest 28 | run_install: true 29 | - name: Test 30 | run: pnpm test 31 | - name: Report 32 | run: npx c8 report --reporter=text-lcov > coverage/lcov.info 33 | - name: Coverage 34 | uses: coverallsapp/github-action@main 35 | with: 36 | github-token: ${{ secrets.GITHUB_TOKEN }} 37 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .envrc 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | audit=false 2 | fund=false 3 | loglevel=error 4 | package-lock=false 5 | prefer-dedupe=true 6 | prefer-offline=false 7 | resolution-mode=highest 8 | save-prefix=~ 9 | save=false 10 | shamefully-hoist=true 11 | strict-peer-dependencies=false 12 | unsafe-perm=true 13 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | 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. 4 | 5 | ### 2.0.43 (2025-10-14) 6 | 7 | ### 2.0.42 (2025-09-04) 8 | 9 | ### 2.0.41 (2025-08-12) 10 | 11 | ### 2.0.40 (2025-05-19) 12 | 13 | ### 2.0.39 (2025-01-16) 14 | 15 | ### 2.0.38 (2024-09-03) 16 | 17 | ### 2.0.37 (2024-08-28) 18 | 19 | ### 2.0.36 (2024-05-08) 20 | 21 | ### 2.0.35 (2024-02-11) 22 | 23 | ### 2.0.34 (2024-02-09) 24 | 25 | ### 2.0.33 (2024-01-02) 26 | 27 | ### 2.0.32 (2023-12-13) 28 | 29 | ### 2.0.31 (2023-11-30) 30 | 31 | ### 2.0.30 (2023-10-24) 32 | 33 | ### 2.0.29 (2023-10-07) 34 | 35 | ### 2.0.28 (2023-09-18) 36 | 37 | ### 2.0.27 (2023-09-18) 38 | 39 | ### 2.0.26 (2023-09-05) 40 | 41 | ### 2.0.25 (2023-07-03) 42 | 43 | ### 2.0.24 (2023-03-28) 44 | 45 | 46 | ### Bug Fixes 47 | 48 | * don't run contributors as prerelease ([c787ca8](https://github.com/kikobeats/automate-release/commit/c787ca8ef2ff8dcd26bb30e8370bc75d20b3a2b2)) 49 | 50 | ### 2.0.23 (2023-01-26) 51 | 52 | 53 | ### Bug Fixes 54 | 55 | * add back coverage report ([a8a09b1](https://github.com/kikobeats/automate-release/commit/a8a09b1cc42b6ba4aa8c4e9e4d640379e8c2a2cf)) 56 | 57 | ### 2.0.22 (2022-12-29) 58 | 59 | ### 2.0.21 (2022-12-22) 60 | 61 | ### 2.0.20 (2022-12-22) 62 | 63 | ### 2.0.19 (2022-11-30) 64 | 65 | ### 2.0.18 (2022-11-29) 66 | 67 | ### 2.0.17 (2022-07-14) 68 | 69 | ### 2.0.16 (2022-05-26) 70 | 71 | ### 2.0.15 (2022-05-17) 72 | 73 | ### 2.0.14 (2022-04-18) 74 | 75 | ### 2.0.13 (2022-04-12) 76 | 77 | ### 2.0.12 (2022-04-04) 78 | 79 | ### 2.0.11 (2022-03-02) 80 | 81 | ### 2.0.10 (2022-02-25) 82 | 83 | ### 2.0.9 (2021-12-12) 84 | 85 | ### 2.0.8 (2021-10-13) 86 | 87 | ### 2.0.7 (2021-10-09) 88 | 89 | ### 2.0.6 (2021-07-29) 90 | 91 | ### 2.0.5 (2021-07-14) 92 | 93 | ### 2.0.4 (2021-07-14) 94 | 95 | ### 2.0.3 (2021-07-06) 96 | 97 | 98 | ### Bug Fixes 99 | 100 | * relative path ([40e6fe4](https://github.com/kikobeats/automate-release/commit/40e6fe460d25a783d1718283008b938d696bb72d)) 101 | 102 | ### 2.0.2 (2021-07-05) 103 | 104 | ### 2.0.1 (2021-07-04) 105 | 106 | ## [2.0.0](https://github.com/kikobeats/automate-release/compare/v1.0.10...v2.0.0) (2021-07-04) 107 | 108 | 109 | ### Features 110 | 111 | * use GitHub Actions ([190f3a2](https://github.com/kikobeats/automate-release/commit/190f3a2388b1ebefbfb4cf407f82f1b4c7b4b0f6)) 112 | 113 | ## 1.1.0 (2021-07-04) 114 | 115 | 116 | ### Features 117 | 118 | * use GitHub Actions ([190f3a2](https://github.com/kikobeats/automate-release/commit/190f3a2388b1ebefbfb4cf407f82f1b4c7b4b0f6)) 119 | 120 | ### [1.0.10](https://github.com/kikobeats/automate-release/compare/v1.0.9...v1.0.10) (2021-05-02) 121 | 122 | ### [1.0.9](https://github.com/kikobeats/automate-release/compare/v1.0.8...v1.0.9) (2021-03-23) 123 | 124 | ### [1.0.8](https://github.com/Kikobeats/automate-release/compare/v1.0.7...v1.0.8) (2021-03-18) 125 | 126 | ### [1.0.7](https://github.com/Kikobeats/automate-release/compare/v1.0.6...v1.0.7) (2021-03-18) 127 | 128 | ### [1.0.6](https://github.com/Kikobeats/automate-release/compare/v1.0.5...v1.0.6) (2021-02-08) 129 | 130 | 131 | ### Bug Fixes 132 | 133 | * add ci-publish fallback for local releases ([143de3f](https://github.com/Kikobeats/automate-release/commit/143de3fabd3a6c0f12123be7a82eb892f33c4b78)) 134 | 135 | ### [1.0.5](https://github.com/Kikobeats/automate-release/compare/v1.0.4...v1.0.5) (2021-01-20) 136 | 137 | ### [1.0.4](https://github.com/Kikobeats/automate-release/compare/v1.0.3...v1.0.4) (2020-12-25) 138 | 139 | ### [1.0.3](https://github.com/Kikobeats/automate-release/compare/v1.0.2...v1.0.3) (2020-09-30) 140 | 141 | ### [1.0.2](https://github.com/Kikobeats/automate-release/compare/v1.0.1...v1.0.2) (2020-08-11) 142 | 143 | ### [1.0.1](https://github.com/Kikobeats/automate-release/compare/v1.0.0...v1.0.1) (2020-08-11) 144 | 145 | ## [1.0.0](https://github.com/Kikobeats/automate-release/compare/v0.8.54...v1.0.0) (2020-07-03) 146 | 147 | ### [0.8.54](https://github.com/Kikobeats/automate-release/compare/v0.8.53...v0.8.54) (2020-07-02) 148 | 149 | ### [0.8.53](https://github.com/Kikobeats/automate-release/compare/v0.8.52...v0.8.53) (2020-07-02) 150 | 151 | 152 | ### Bug Fixes 153 | 154 | * use a color with better contrast ([607176c](https://github.com/Kikobeats/automate-release/commit/607176c553b24f2f7701d61f45722a8c4716f1cb)), closes [#28](https://github.com/Kikobeats/automate-release/issues/28) 155 | 156 | ### [0.8.52](https://github.com/Kikobeats/automate-release/compare/v0.8.51...v0.8.52) (2020-07-02) 157 | 158 | 159 | ### Bug Fixes 160 | 161 | * use png instead of svg for headline ([f43d76a](https://github.com/Kikobeats/automate-release/commit/f43d76a1abf08b3906d2a32d02d4c0ebc630e07c)), closes [#27](https://github.com/Kikobeats/automate-release/issues/27) 162 | 163 | ### [0.8.51](https://github.com/Kikobeats/automate-release/compare/v0.8.50...v0.8.51) (2020-07-02) 164 | 165 | 166 | ### Bug Fixes 167 | 168 | * include travis file ([121f74c](https://github.com/Kikobeats/automate-release/commit/121f74cf7d9dbfd7989ced226f5bffaab5085f28)) 169 | 170 | ### [0.8.50](https://github.com/Kikobeats/automate-release/compare/v0.8.49...v0.8.50) (2020-07-01) 171 | 172 | ### [0.8.49](https://github.com/Kikobeats/automate-release/compare/v0.8.48...v0.8.49) (2020-07-01) 173 | 174 | ### [0.8.48](https://github.com/Kikobeats/automate-release/compare/v0.8.47...v0.8.48) (2020-07-01) 175 | 176 | ### [0.8.47](https://github.com/Kikobeats/automate-release/compare/v0.8.46...v0.8.47) (2020-07-01) 177 | 178 | ### [0.8.46](https://github.com/Kikobeats/automate-release/compare/v0.8.45...v0.8.46) (2020-07-01) 179 | 180 | ### [0.8.45](https://github.com/Kikobeats/automate-release/compare/v0.8.44...v0.8.45) (2020-07-01) 181 | 182 | ### [0.8.44](https://github.com/Kikobeats/automate-release/compare/v0.8.43...v0.8.44) (2020-07-01) 183 | 184 | 185 | ### Features 186 | 187 | * add release-please ([d63c6aa](https://github.com/Kikobeats/automate-release/commit/d63c6aafacf0c0b52aebefd9b9ae24b96a4396a8)) 188 | 189 | 190 | ### Bug Fixes 191 | 192 | * identation ([497f2a8](https://github.com/Kikobeats/automate-release/commit/497f2a8a8f0e1d58ecaf5f5cc884db0dc4246bcb)) 193 | 194 | ### [0.8.43](https://github.com/Kikobeats/automate-release/compare/v0.8.41...v0.8.43) (2020-07-01) 195 | 196 | 197 | ### Bug Fixes 198 | 199 | * add missing dependency ([16d4e6b](https://github.com/Kikobeats/automate-release/commit/16d4e6b07cd2fe7572a36afa6d1b6a801ab91997)) 200 | 201 | ### [0.8.42](https://github.com/Kikobeats/automate-release/compare/v0.8.41...v0.8.42) (2020-06-30) 202 | 203 | 204 | ### Bug Fixes 205 | 206 | * add missing dependency ([16d4e6b](https://github.com/Kikobeats/automate-release/commit/16d4e6b07cd2fe7572a36afa6d1b6a801ab91997)) 207 | 208 | ### [0.8.41](https://github.com/Kikobeats/automate-release/compare/v0.8.40...v0.8.41) (2020-06-10) 209 | 210 | ### [0.8.40](https://github.com/Kikobeats/automate-release/compare/v0.8.39...v0.8.40) (2020-04-03) 211 | 212 | ### [0.8.39](https://github.com/Kikobeats/automate-release/compare/v0.8.38...v0.8.39) (2020-03-20) 213 | 214 | ### [0.8.38](https://github.com/Kikobeats/automate-release/compare/v0.8.37...v0.8.38) (2020-03-05) 215 | 216 | ### [0.8.37](https://github.com/Kikobeats/automate-release/compare/v0.8.36...v0.8.37) (2020-02-17) 217 | 218 | ### [0.8.36](https://github.com/Kikobeats/automate-release/compare/v0.8.35...v0.8.36) (2020-01-29) 219 | 220 | ### [0.8.35](https://github.com/Kikobeats/automate-release/compare/v0.8.34...v0.8.35) (2020-01-28) 221 | 222 | ### [0.8.34](https://github.com/Kikobeats/automate-release/compare/v0.8.33...v0.8.34) (2020-01-28) 223 | 224 | ### [0.8.33](https://github.com/Kikobeats/automate-release/compare/v0.8.32...v0.8.33) (2020-01-24) 225 | 226 | ### [0.8.32](https://github.com/Kikobeats/automate-release/compare/v0.8.31...v0.8.32) (2020-01-22) 227 | 228 | ### [0.8.31](https://github.com/Kikobeats/automate-release/compare/v0.8.30...v0.8.31) (2020-01-22) 229 | 230 | ### [0.8.30](https://github.com/Kikobeats/automate-release/compare/v0.8.29...v0.8.30) (2020-01-20) 231 | 232 | ### [0.8.29](https://github.com/Kikobeats/automate-release/compare/v0.8.28...v0.8.29) (2019-10-31) 233 | 234 | 235 | ### Bug Fixes 236 | 237 | * indent ([8e3a872](https://github.com/Kikobeats/automate-release/commit/8e3a8725da104ed4a05f978a7fbbe11822ce8281)) 238 | 239 | ### [0.8.28](https://github.com/Kikobeats/automate-release/compare/v0.8.27...v0.8.28) (2019-10-12) 240 | 241 | ### [0.8.27](https://github.com/Kikobeats/automate-release/compare/v0.8.26...v0.8.27) (2019-08-19) 242 | 243 | ### [0.8.26](https://github.com/Kikobeats/automate-release/compare/v0.8.25...v0.8.26) (2019-08-19) 244 | 245 | ### [0.8.25](https://github.com/Kikobeats/automate-release/compare/v0.8.24...v0.8.25) (2019-08-13) 246 | 247 | 248 | ### Bug Fixes 249 | 250 | * linters ([9bf205a](https://github.com/Kikobeats/automate-release/commit/9bf205a)) 251 | 252 | ### [0.8.24](https://github.com/Kikobeats/automate-release/compare/v0.8.23...v0.8.24) (2019-08-10) 253 | 254 | ### [0.8.23](https://github.com/Kikobeats/automate-release/compare/v0.8.22...v0.8.23) (2019-07-02) 255 | 256 | 257 | ### Bug Fixes 258 | 259 | * add missing dependnecy ([97527be](https://github.com/Kikobeats/automate-release/commit/97527be)) 260 | 261 | 262 | 263 | ### [0.8.22](https://github.com/Kikobeats/automate-release/compare/v0.8.21...v0.8.22) (2019-06-21) 264 | 265 | 266 | ### Build System 267 | 268 | * adjust preversion ([56a8b71](https://github.com/Kikobeats/automate-release/commit/56a8b71)) 269 | * update ncu flag ([5ec69cb](https://github.com/Kikobeats/automate-release/commit/5ec69cb)) 270 | 271 | 272 | 273 | ### [0.8.21](https://github.com/Kikobeats/automate-release/compare/v0.8.20...v0.8.21) (2019-06-19) 274 | 275 | 276 | ### Bug Fixes 277 | 278 | * typo ([4485e5c](https://github.com/Kikobeats/automate-release/commit/4485e5c)) 279 | 280 | 281 | 282 | ### [0.8.20](https://github.com/Kikobeats/automate-release/compare/v0.8.19...v0.8.20) (2019-06-19) 283 | 284 | 285 | ### Build System 286 | 287 | * setup default git settings ([6dcea6a](https://github.com/Kikobeats/automate-release/commit/6dcea6a)) 288 | 289 | 290 | 291 | ### [0.8.19](https://github.com/Kikobeats/automate-release/compare/v0.8.18...v0.8.19) (2019-05-20) 292 | 293 | 294 | ### Build System 295 | 296 | * remove unnecessary keys ([29e7da5](https://github.com/Kikobeats/automate-release/commit/29e7da5)) 297 | 298 | 299 | 300 | ### [0.8.18](https://github.com/Kikobeats/automate-release/compare/v0.8.17...v0.8.18) (2019-05-20) 301 | 302 | 303 | 304 | ### [0.8.17](https://github.com/Kikobeats/automate-release/compare/v0.8.16...v0.8.17) (2019-05-20) 305 | 306 | 307 | ### Build System 308 | 309 | * change git-authors-cli position ([0a23528](https://github.com/Kikobeats/automate-release/commit/0a23528)) 310 | * update dependencies ([f7436eb](https://github.com/Kikobeats/automate-release/commit/f7436eb)) 311 | 312 | 313 | 314 | ### [0.8.16](https://github.com/Kikobeats/automate-release/compare/v0.8.15...v0.8.16) (2019-05-20) 315 | 316 | 317 | ### Build System 318 | 319 | * tweaks ([620944a](https://github.com/Kikobeats/automate-release/commit/620944a)) 320 | 321 | 322 | 323 | ## [0.8.15](https://github.com/Kikobeats/automate-release/compare/v0.8.14...v0.8.15) (2019-04-18) 324 | 325 | 326 | 327 | 328 | ## [0.8.14](https://github.com/Kikobeats/automate-release/compare/v0.8.13...v0.8.14) (2019-04-03) 329 | 330 | 331 | ### Bug Fixes 332 | 333 | * rename sh into bash ([1a7ca31](https://github.com/Kikobeats/automate-release/commit/1a7ca31)) 334 | 335 | 336 | 337 | 338 | ## [0.8.13](https://github.com/Kikobeats/automate-release/compare/v0.8.10...v0.8.13) (2019-01-25) 339 | 340 | 341 | ### Bug Fixes 342 | 343 | * add continous release section ([797ecd1](https://github.com/Kikobeats/automate-release/commit/797ecd1)), closes [#2](https://github.com/Kikobeats/automate-release/issues/2) 344 | * add coverage script under test ([134a488](https://github.com/Kikobeats/automate-release/commit/134a488)) 345 | * add github release info ([9933aa8](https://github.com/Kikobeats/automate-release/commit/9933aa8)) 346 | * define test matrix ([41ed5c0](https://github.com/Kikobeats/automate-release/commit/41ed5c0)) 347 | * ensure checkout branch ([b2cc9a2](https://github.com/Kikobeats/automate-release/commit/b2cc9a2)), closes [#issuecomment-403235131](https://github.com/Kikobeats/automate-release/issues/issuecomment-403235131) 348 | 349 | 350 | 351 | 352 | ## [0.8.12](https://github.com/Kikobeats/automate-release/compare/v0.8.10...v0.8.12) (2018-11-27) 353 | 354 | 355 | ### Bug Fixes 356 | 357 | * add continous release section ([797ecd1](https://github.com/Kikobeats/automate-release/commit/797ecd1)), closes [#2](https://github.com/Kikobeats/automate-release/issues/2) 358 | * add coverage script under test ([134a488](https://github.com/Kikobeats/automate-release/commit/134a488)) 359 | * add github release info ([9933aa8](https://github.com/Kikobeats/automate-release/commit/9933aa8)) 360 | * define test matrix ([41ed5c0](https://github.com/Kikobeats/automate-release/commit/41ed5c0)) 361 | 362 | 363 | 364 | 365 | ## [0.8.11](https://github.com/Kikobeats/automate-release/compare/v0.8.10...v0.8.11) (2018-10-29) 366 | 367 | 368 | ### Bug Fixes 369 | 370 | * add continous release section ([797ecd1](https://github.com/Kikobeats/automate-release/commit/797ecd1)), closes [#2](https://github.com/Kikobeats/automate-release/issues/2) 371 | * add coverage script under test ([134a488](https://github.com/Kikobeats/automate-release/commit/134a488)) 372 | * define test matrix ([41ed5c0](https://github.com/Kikobeats/automate-release/commit/41ed5c0)) 373 | 374 | 375 | 376 | 377 | ## [0.8.10](https://github.com/Kikobeats/automate-release/compare/v0.8.7...v0.8.10) (2018-10-27) 378 | 379 | 380 | ### Bug Fixes 381 | 382 | * improve script ([17f4cba](https://github.com/Kikobeats/automate-release/commit/17f4cba)) 383 | 384 | 385 | 386 | 387 | ## [0.8.9](https://github.com/Kikobeats/automate-release/compare/v0.8.7...v0.8.9) (2018-10-26) 388 | 389 | 390 | 391 | 392 | ## [0.8.8](https://github.com/Kikobeats/automate-release/compare/v0.8.7...v0.8.8) (2018-10-26) 393 | 394 | 395 | 396 | 397 | ## [0.8.8](https://github.com/Kikobeats/automate-release/compare/v0.8.7...v0.8.8) (2018-10-26) 398 | 399 | 400 | 401 | 402 | ## [0.8.7](https://github.com/Kikobeats/automate-release/compare/v0.8.6...v0.8.7) (2018-10-26) 403 | 404 | 405 | 406 | 407 | ## [0.8.6](https://github.com/Kikobeats/automate-release/compare/v0.8.5...v0.8.6) (2018-10-25) 408 | 409 | 410 | 411 | 412 | ## [0.8.5](https://github.com/Kikobeats/automate-release/compare/v0.8.4...v0.8.5) (2018-10-25) 413 | 414 | 415 | 416 | 417 | ## [0.8.3](https://github.com/Kikobeats/automate-release/compare/v0.8.2...v0.8.3) (2018-10-25) 418 | 419 | 420 | ### Bug Fixes 421 | 422 | * remove debug info ([259aba0](https://github.com/Kikobeats/automate-release/commit/259aba0)) 423 | 424 | 425 | 426 | 427 | ## [0.8.1](https://github.com/Kikobeats/automate-release/compare/v0.7.5...v0.8.1) (2018-10-25) 428 | 429 | 430 | 431 | 432 | ## [0.7.4](https://github.com/Kikobeats/automatic-release/compare/v0.7.3...v0.7.4) (2018-10-14) 433 | 434 | 435 | ### Bug Fixes 436 | 437 | * copy dot path properly ([cb29603](https://github.com/Kikobeats/automatic-release/commit/cb29603)) 438 | 439 | 440 | 441 | 442 | ## [0.7.3](https://github.com/Kikobeats/automatic-release/compare/v0.7.2...v0.7.3) (2018-10-13) 443 | 444 | 445 | ### Bug Fixes 446 | 447 | * show readme under help ([01498bc](https://github.com/Kikobeats/automatic-release/commit/01498bc)) 448 | 449 | 450 | 451 | 452 | ## [0.7.2](https://github.com/Kikobeats/automatic-release/compare/v0.7.1...v0.7.2) (2018-10-13) 453 | 454 | 455 | ### Bug Fixes 456 | 457 | * add posinstallation guidelines ([77b68dd](https://github.com/Kikobeats/automatic-release/commit/77b68dd)) 458 | 459 | 460 | 461 | 462 | ## [0.7.1](https://github.com/Kikobeats/automatic-release/compare/v0.7.0...v0.7.1) (2018-10-13) 463 | 464 | 465 | ### Bug Fixes 466 | 467 | * add description ([46834d3](https://github.com/Kikobeats/automatic-release/commit/46834d3)) 468 | * setup shell ([ac66fab](https://github.com/Kikobeats/automatic-release/commit/ac66fab)) 469 | 470 | 471 | 472 | 473 | # [0.7.0](https://github.com/Kikobeats/automatic-release/compare/v0.6.1...v0.7.0) (2018-10-13) 474 | 475 | 476 | ### Features 477 | 478 | * add cli ([63ad6e2](https://github.com/Kikobeats/automatic-release/commit/63ad6e2)) 479 | 480 | 481 | 482 | 483 | ## [0.6.1](https://github.com/Kikobeats/automatic-release/compare/v0.6.0...v0.6.1) (2018-10-12) 484 | 485 | 486 | 487 | 488 | # [0.6.0](https://github.com/Kikobeats/automatic-release/compare/v0.5.5...v0.6.0) (2018-10-12) 489 | 490 | 491 | ### Features 492 | 493 | * better explanation about changelog content ([1f0a487](https://github.com/Kikobeats/automatic-release/commit/1f0a487)), closes [#3](https://github.com/Kikobeats/automatic-release/issues/3) 494 | 495 | 496 | 497 | 498 | ## [0.5.5](https://github.com/Kikobeats/automatic-release/compare/v0.5.4...v0.5.5) (2018-10-12) 499 | 500 | A new version come out 🎉 501 | 502 | This new version has mainly related with improve the scripts we use. 503 | 504 | ### Bug Fixes 505 | 506 | * setup project name ([1b7e7af](https://github.com/Kikobeats/automatic-release/commit/1b7e7af)) 507 | 508 | 509 | 510 | 511 | ## [0.5.4](https://github.com/Kikobeats/automatic-release/compare/v0.5.3...v0.5.4) (2018-10-11) 512 | 513 | A better version come out 💥 514 | 515 | We fixed the gramar of project, describing better the concepts. 516 | 517 | ### Bug Fixes 518 | 519 | * grammar ([da526be](https://github.com/Kikobeats/automatic-release/commit/da526be)) 520 | 521 | 522 | 523 | 524 | ## [0.5.3](https://github.com/Kikobeats/automatic-release/compare/v0.5.2...v0.5.3) (2018-10-10) 525 | 526 | 527 | 528 | 529 | ## [0.5.2](https://github.com/Kikobeats/automatic-release/compare/v0.5.1...v0.5.2) (2018-10-10) 530 | 531 | 532 | ### Bug Fixes 533 | 534 | * define author ([3e4c322](https://github.com/Kikobeats/automatic-release/commit/3e4c322)) 535 | 536 | 537 | 538 | 539 | ## [0.5.1](https://github.com/Kikobeats/automatic-release/compare/v0.5.0...v0.5.1) (2018-10-10) 540 | 541 | 542 | ### Bug Fixes 543 | 544 | * commit authors before release ([78fc4bb](https://github.com/Kikobeats/automatic-release/commit/78fc4bb)) 545 | 546 | 547 | 548 | 549 | # [0.5.0](https://github.com/Kikobeats/automatic-release/compare/v0.4.2...v0.5.0) (2018-10-10) 550 | 551 | 552 | ### Features 553 | 554 | * add git-authors ([c786e3e](https://github.com/Kikobeats/automatic-release/commit/c786e3e)) 555 | 556 | 557 | 558 | 559 | ## [0.4.2](https://github.com/Kikobeats/automatic-release/compare/v0.4.1...v0.4.2) (2018-10-10) 560 | 561 | 562 | 563 | 564 | ## [0.4.1](https://github.com/Kikobeats/automatic-release/compare/v0.4.0...v0.4.1) (2018-10-10) 565 | 566 | 567 | 568 | 569 | # [0.4.0](https://github.com/Kikobeats/automatic-release/compare/v0.3.0...v0.4.0) (2018-10-10) 570 | 571 | 572 | ### Features 573 | 574 | * add communication section ([649b822](https://github.com/Kikobeats/automatic-release/commit/649b822)) 575 | 576 | 577 | 578 | 579 | # [0.3.0](https://github.com/Kikobeats/automatic-release/compare/v0.2.1...v0.3.0) (2018-10-10) 580 | 581 | 582 | ### Features 583 | 584 | * add github release ([9c7a69e](https://github.com/Kikobeats/automatic-release/commit/9c7a69e)) 585 | 586 | 587 | 588 | 589 | ## [0.2.1](https://github.com/Kikobeats/automatic-release/compare/v0.2.0...v0.2.1) (2018-10-10) 590 | 591 | 592 | 593 | 594 | # [0.2.0](https://github.com/Kikobeats/automatic-release/compare/v0.1.0...v0.2.0) (2018-10-10) 595 | 596 | 597 | ### Features 598 | 599 | * add postrelease script ([01de80f](https://github.com/Kikobeats/automatic-release/commit/01de80f)) 600 | 601 | 602 | 603 | 604 | # 0.1.0 (2018-10-10) 605 | 606 | 607 | ### Features 608 | 609 | * add standard-version ([3ecccd1](https://github.com/Kikobeats/automatic-release/commit/3ecccd1)) 610 | * first commit ([02ee2ce](https://github.com/Kikobeats/automatic-release/commit/02ee2ce)) 611 | * write next version section ([b2f3456](https://github.com/Kikobeats/automatic-release/commit/b2f3456)) 612 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |