Skip to content

Commit

Permalink
Update the release version to 0.11.0 and update the change log
Browse files Browse the repository at this point in the history
  • Loading branch information
c0d1f1ed committed Jan 23, 2024
1 parent 719b7c4 commit 875adca
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

## [0.11.0] - 2024-01-23

- Re-release 1.0.0-beta.7 as a non-pre-release 0.11.0 version so it gets selected by `pip install warp-lang`.
- Introducing a new versioning and release process, detailed in `PACKAGING.md` and resembling that of [Python itself](https://devguide.python.org/developer-workflow/development-cycle/#devcycle):
- The 0.11 release(s) can be found on the `release-0.11` branch.
- Point releases (if any) go on the same minor release branch and only contain bug fixes, not new features.
- The `public` branch, previously used to merge releases into and corresponding with the GitHub `main` branch, is retired.

## [1.0.0-beta.7] - 2024-01-23

- Ensure captures are always enclosed in `try`/`finally`
Expand Down
4 changes: 2 additions & 2 deletions PACKAGING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
## Versioning
-------------

Versions take the format X.Y.Z, similar to Python itself:
Versions take the format X.Y.Z, similar to [Python itself](https://devguide.python.org/developer-workflow/development-cycle/#devcycle):

- Increments in X are reserved for major reworks of the project causing disruptive incompatibility.
- Increments in X are reserved for major reworks of the project causing disruptive incompatibility (or reaching the 1.0 milestone).
- Increments in Y are for regular releases with a new set of features.
- Increments in Z are for bug fixes. In principle there are no new features. Can be omitted if 0 or not relevant.

Expand Down
2 changes: 1 addition & 1 deletion VERSION.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0-beta.7
0.11.0
2 changes: 1 addition & 1 deletion warp/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.

version = "1.0.0-beta.7"
version = "0.11.0"

cuda_path = (
None # path to local CUDA toolchain, if None at init time warp will attempt to find the SDK using CUDA_PATH env var
Expand Down

0 comments on commit 875adca

Please sign in to comment.