Skip to content

Commit 062d41c

Browse files
committed
Prepare for 1.0.0
1 parent 51b5465 commit 062d41c

File tree

4 files changed

+22
-10
lines changed

4 files changed

+22
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
Nothing yet.
1111

12-
## [0.1.0] - 2020-09-05
12+
## [1.0.0] - 2020-09-05
1313

1414
The first release! Includes the `sync` command which will sync your `CHANGELOG.md` to GitHub Release notes.
1515

16-
[Unreleased]: https://github.com/dropseed/changerelease/compare/v0.1.0...HEAD
17-
[0.1.0]: https://github.com/dropseed/changerelease/releases/tag/v0.1.0
16+
[Unreleased]: https://github.com/dropseed/changerelease/compare/v1.0.0...HEAD
17+
[1.0.0]: https://github.com/dropseed/changerelease/releases/tag/v1.0.0

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,22 @@ on:
1414
workflow_dispatch: {}
1515
push:
1616
paths: [CHANGELOG.md]
17-
branches: [$default-branch]
17+
branches: [master]
1818
tags: ["*"]
1919

2020
jobs:
2121
sync:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- uses: actions/checkout@v2
25-
- uses: dropseed/changerelease
25+
- uses: dropseed/changerelease@master
26+
with:
27+
github_token: ${{ secrets.GITHUB_TOKEN }}
28+
```
29+
30+
## Use the Python package
2631
32+
```sh
33+
$ pip install changerelease
34+
$ changerelease sync --repo org/repo --token TOKEN
2735
```

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[tool.poetry]
22
name = "changerelease"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
description = "Sync GitHub Releases with CHANGELOG.md"
5-
authors = ["Drave Gaeddert <dave.gaeddert@dropseed.io>"]
5+
authors = ["Dave Gaeddert <dave.gaeddert@dropseed.io>"]
66
license = "MIT"
7-
homepage = "https://changerelease.dropseed.io"
8-
documentation = "https://changerelease.dropseed.io"
7+
# homepage = "https://changerelease.dropseed.io"
8+
# documentation = "https://changerelease.dropseed.io"
99
repository = "https://github.com/dropseed/changerelease"
10-
keywords = []
10+
keywords = ["changelog", "github", "release", "changes"]
1111

1212
[tool.poetry.scripts]
1313
changerelease = "changerelease.cli:cli"

scripts/release

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh -e
2+
poetry build
3+
poetry publish
4+
echo "Git tag and push this version"

0 commit comments

Comments
 (0)