Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/readthedocs/sphinx_rtd_theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Johnson <aj@ohess.org>2021-08-11 00:37:55 +0300
committerAnthony Johnson <aj@ohess.org>2021-08-11 00:37:55 +0300
commite4bcdd8c411492d37d1473e28b543faecb32da56 (patch)
tree16f38fb87e6678104f3656fac21fe0ea6c7680dd /package.json
parentd7b0744111eb126e069d82c4fb689c9b22816402 (diff)
Bump to 1.0alpha1
I think we talked about this and never followed through on the next few release, not sure though. After we release a new version, I think we should be updating the repository version to something other than the most current release. The effect would be that the version in the repository would be an alpha/dev release, and so would be possible to differentiate easily between 0.5.2 release on PyPI and 0.5.3alpha1 development release from Git. Right now, we don't follow up with incrementing this version, and so it's harder to tell the difference. This is mostly for our use in development. It adds a small bit of overhead, but is nice and explicit. This PR updates the version in the repository to 1.0.0alpha1. If we had adopted this workflow, the progression would have been: * Release 0.5.2, open PR bumping to 0.5.2 (run `bump2version release` and open PR) * Follow up 0.5.2 release by bumping to `0.5.3alpha1` (run `bump2version patch` and open PR) * We add a new feature, bump to `0.6.0alpha1` (run `bump2version minor` and open PR) * Oops, backwards incompatible change. We bump to `1.0.0alpha1` (run `bump2version major` and open PR) * We're ready for an rc, bump to `1.0.0rc1` (run `bump2version release` and open PR) * Maybe we cut another rc after some fixes * We're ready for final release, bump to `1.0.0` (run `bump2version release` and open PR) * Follow up the release PR by bumping to the next version (run `bump2version patch` and open PR)
Diffstat (limited to 'package.json')
-rw-r--r--package.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json
index 1f2b85c..d0da494 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "sphinx_rtd_theme",
"main": "js/theme.js",
- "version": "0.5.2",
+ "version": "1.0.0alpha1",
"scripts": {
"dev": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",