Skip to content

Commit

Permalink
bump: version 1.0.0 → 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarcoatl committed Oct 13, 2023
1 parent 5c7204b commit 9fb96ed
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .cz.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ commitizen:
name: cz_conventional_commits
tag_format: v$version
update_changelog_on_bump: true
version: 1.0.0
version: 1.1.0
version_files:
- README.md
version_scheme: semver
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
## v1.1.0 (2023-10-12)

### Feat

- **workflows**: make caching optional (#3)

## v1.0.0 (2023-10-08)
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ target-version = ["py27"]
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/black.yml@v1.0.0
uses: coatl-dev/workflows/.github/workflows/black.yml@v1.1.0
with:
sources-root: 'src'
```
Expand Down Expand Up @@ -91,7 +91,7 @@ Python 2.7 code.
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/flake8.yml@v1.0.0
uses: coatl-dev/workflows/.github/workflows/flake8.yml@v1.1.0
with:
sources-root: 'src'
```
Expand Down Expand Up @@ -143,7 +143,7 @@ types-enum34
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/mypy.yml@v1.0.0
uses: coatl-dev/workflows/.github/workflows/mypy.yml@v1.1.0
with:
mypy-requirements: 'requirements/typecheck.txt'
sources-root: 'src'
Expand Down Expand Up @@ -179,7 +179,7 @@ to install Python and invoke [`pre-commit`].
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/pre-commit.yml@v1.0.0
uses: coatl-dev/workflows/.github/workflows/pre-commit.yml@v1.1.0
with:
skip-hooks: 'pylint'
```
Expand Down Expand Up @@ -210,7 +210,7 @@ This workflow will install Python and invoke `pylint` to analyze your code.
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/pylint.yml@v1.0.0
uses: coatl-dev/workflows/.github/workflows/pylint.yml@v1.1.0
```

### .github/workflows/pypi-upload.yml
Expand Down Expand Up @@ -252,7 +252,7 @@ action: [action-pypi-upload](https://github.com/coatl-dev/action-pypi-upload).
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/pypi-upload.yml@v1.0.0
uses: coatl-dev/workflows/.github/workflows/pypi-upload.yml@v1.1.0
with:
python-version: '3.11'
secrets:
Expand Down Expand Up @@ -292,7 +292,7 @@ requires =
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/tox-docker.yml@v1.0.0
uses: coatl-dev/workflows/.github/workflows/tox-docker.yml@v1.1.0
```

### .github/workflows/tox-envs.yml
Expand Down Expand Up @@ -335,7 +335,7 @@ requires =
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/tox-envs.yml@v1.0.0
uses: coatl-dev/workflows/.github/workflows/tox-envs.yml@v1.1.0
with:
python-versions: '["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]'
```
Expand Down Expand Up @@ -381,7 +381,7 @@ and on your workflow:
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/tox-gh.yml@v1.0.0
uses: coatl-dev/workflows/.github/workflows/tox-gh.yml@v1.1.0
with:
python-versions: '["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]'
```
Expand Down Expand Up @@ -413,7 +413,7 @@ This workflow will install Python and invoke `tox` to run all envs found in
```yaml
jobs:
main:
uses: coatl-dev/workflows/.github/workflows/tox.yml@v1.0.0
uses: coatl-dev/workflows/.github/workflows/tox.yml@v1.1.0
```

[`actions/setup-python`]: https://github.com/actions/setup-python
Expand Down

0 comments on commit 9fb96ed

Please sign in to comment.