Skip to content

Commit

Permalink
chore: bump version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mscolnick committed Jan 31, 2025
1 parent af38d82 commit 9daa2bb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions docs/getting-started/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,17 +68,17 @@ To release a new version:
1. Bump the version:

```bash
hatch version patch # or minor/major
# Bump the version
git add pyproject.toml
git commit -m "chore: bump version to $(hatch version --no-color)"
git commit -m "chore: bump version to $(hatch --no-color version)"
git push origin main
```

2. Create and push a tag:

```bash
git tag $(hatch version --no-color)
git push origin $(hatch version --no-color)
git tag $(hatch --no-color version)
git push origin $(hatch --no-color version)
```

This will trigger the GitHub Actions workflow to build and publish the package to PyPI.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ license = "Apache-2.0"
name = "mkdocs-marimo"
readme = "README.md"
requires-python = ">=3.9"
version = "0.1.2"
version = "0.2.0"

[project.entry-points."mkdocs.plugins"]
marimo = "mkdocs_marimo.plugin:MarimoPlugin"
Expand Down

0 comments on commit 9daa2bb

Please sign in to comment.