Skip to content

Commit

Permalink
bump to 0.4.12
Browse files Browse the repository at this point in the history
  • Loading branch information
evinism committed Oct 8, 2024
1 parent 11e86da commit ef11f89
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ In the future, this is expected to change. It's likely that at 0.5.0, we will de

Format [Keep A ChangeLog](https://keepachangelog.com/en/1.0.0/)

## [0.4.12]

### Changed
- https://github.com/evinism/mistql/pull/182, https://github.com/evinism/mistql/pull/181 Bumped many dependencies to latest versions.
- https://github.com/evinism/mistql/pull/183 Removed EOL'd Python3.7 support.

## [0.4.11]

### Changed
Expand Down
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mistql",
"version": "0.4.11",
"version": "0.4.12",
"description": "JS implementation of miniature query language",
"main": "dist/umd/index.js",
"module": "dist/esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion meta.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "0.4.11"
"version": "0.4.12"
}
2 changes: 1 addition & 1 deletion py/mistql/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.4.11"
__version__ = "0.4.12"

from .query import query # noqa: F401
from .instance import MistQLInstance # noqa: F401
Expand Down
2 changes: 1 addition & 1 deletion py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "mistql"
version = "0.4.11"
version = "0.4.12"
description = "Python implementation of MistQL query language"
authors = ["Evin Sellin <[email protected]>"]

Expand Down
18 changes: 18 additions & 0 deletions version-cutting.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# (For maintainers) How to cut a new version

This is a checklist (mostly for me) on how to cut a new version of MistQL.

1. Cut a new branch from `main` named `X.Y.Z`
1. Update the CHANGELOG
1. Update the version in `py/mistql/__init__.py`
1. Update the version in `py/pyproject.toml`
1. Update the version in `js/package.json`
1. Update the version in `meta.yaml`
1. One final test via `talc test all`
1. Commit the changes (You should have 5 files changed)
1. Publish the npm and pypi packages via `talc publish js` and `talc publish py`
1. Update the doc version of MistQL
1. Version the docs via `npm run docusaurus docs:version X.Y.Z`
1. Commit the changes
1. Push the branch
1. Create a PR and merge it

0 comments on commit ef11f89

Please sign in to comment.