Skip to content

Commit

Permalink
Revert v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmelin committed Mar 17, 2022
1 parent aa6758b commit 7dd1565
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 41 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,6 @@ jobs:
- name: Create build
run: poetry build

- name: Publish 📦 to Test PyPi
env:
TOKEN: ${{ secrets.POETRY_TEST_PYPI_TOKEN_PYPI }}
run: |
poetry config repositories.test-pypi https://test.pypi.org/legacy/
poetry publish -r test-pypi -u __token__ -p $TOKEN
- name: Publish 📦 to PyPi
if: startsWith(github.ref, 'refs/tags')
env:
Expand Down
33 changes: 1 addition & 32 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,35 +14,6 @@ Syntax:

## [Latest Changes]

## [0.3.0] - 2022-03-16

- Create workflow to deploy to pypi
- Fix linting errors
- Fix replacing versions inside single quotes
- Add loguru logging
- Add badges to README
- Fix incorrect test
- Update development dependencies and commands
- Add overview to docs
- Bump version to v0.2.0
- Fix git and github commands to use text
- Ensure repository ends with a slash
- Add commit messages to changelog if empty
- Use first commit as starting version if tag doesn't exist
- Create basic cli entrypoint
- Improve change type guesses
- Basic guess of version to bump using commmit msgs
- Switch to using `subprocess.run` instead of `subprocess.call`.
- Refactor project-specific functions into class
- Parse recent changes and create github release
- Cleanup files
- Refactor bump logic into package
- Fix paths
- Initial commit
- Basic release process using `nox`.

## [0.2.1] - 2022-03-16

### Added
- Logging using [loguru](https://github.com/Delgan/loguru)

Expand All @@ -54,6 +25,4 @@ Syntax:
- Initial project setup


[Latest Changes]: https://github.com/lucasmelin/molting/compare/v0.3.0...HEAD
[0.3.0]: https://github.com/lucasmelin/molting/compare/v0.2.1...v0.3.0
[0.2.1]: https://github.com/lucasmelin/molting/compare/v0.2.0...v0.2.1
[Latest Changes]: https://github.com/lucasmelin/molting/compare/v0.2.0...HEAD
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "molting"
version = "0.3.0"
version = "0.2.0"
description = "Automatically bump your project files to the latest version."
authors = ["Lucas Melin <[email protected]>"]
repository = "https://github.com/lucasmelin/molting"
Expand Down
2 changes: 1 addition & 1 deletion src/molting/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Top-level package for molting."""
__version__ = "0.3.0"
__version__ = "0.2.0"

0 comments on commit 7dd1565

Please sign in to comment.