Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Pulsar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
NDIP
Pulsar
Commits
f6291040
Commit
f6291040
authored
9 years ago
by
John Chilton
Browse files
Options
Downloads
Patches
Plain Diff
Update developing.rst for improved release process.
parent
03760528
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
docs/developing.rst
+4
-8
4 additions, 8 deletions
docs/developing.rst
tools/commit_version.py
+6
-4
6 additions, 4 deletions
tools/commit_version.py
tools/new_version.py
+6
-4
6 additions, 4 deletions
tools/new_version.py
with
16 additions
and
16 deletions
docs/developing.rst
+
4
−
8
View file @
f6291040
...
@@ -32,17 +32,13 @@ are fine.
...
@@ -32,17 +32,13 @@ are fine.
* Review ``git status`` for missing files.
* Review ``git status`` for missing files.
* Verify the latest Travis CI builds pass.
* Verify the latest Travis CI builds pass.
* ``make open-docs`` and review changelog.
* ``make clean && make lint && make tests``
* ``make clean && make lint && make tests``
* Update version info in ``pulsar/__init__.py`` (drop ``.dev0`` suffix).
* ``python tools/commit_version.py <new_version>``
* Update release date and description in ``HISTORY.rst``.
* ``make docs`` and review changelog.
* ``git add HISTORY.rst pulsar/__init__.py; git commit -m "Version <version>"``
* ``make release``
* ``make release``
* Review `Test PyPI site <https://testpypi.python.org/pypi/pulsar-app>`_
* Review `Test PyPI site <https://testpypi.python.org/pypi/pulsar-app>`_
for errors.
for errors.
* Test intall ``pip install -i https://testpypi.python.org/pypi pulsar-app``.
* Test intall ``pip install -i https://testpypi.python.org/pypi pulsar-app``.
* ``git tag <release>``
* ``python scripts/new_version.py <new_version>``
* Update version info in ``pulsar/__init__.py`` (n+1.dev0) and create new entry in HISTORY.rst.
* ``git push origin master``
* ``git add HISTORY.rst pulsar/__init__.py; git commit -m "Start work on new version"``
* ``git push origin``
* ``git push --tags origin``
* ``git push --tags origin``
This diff is collapsed.
Click to expand it.
tools/commit_version.py
+
6
−
4
View file @
f6291040
...
@@ -7,7 +7,9 @@ import subprocess
...
@@ -7,7 +7,9 @@ import subprocess
import
sys
import
sys
PROJECT_NAME
=
"
pulsar
"
PROJECT_DIRECTORY
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"
..
"
)
PROJECT_DIRECTORY
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"
..
"
)
MOD_DIRECTORY
=
os
.
path
.
join
(
PROJECT_DIRECTORY
,
PROJECT_NAME
)
def
main
(
argv
):
def
main
(
argv
):
...
@@ -19,14 +21,14 @@ def main(argv):
...
@@ -19,14 +21,14 @@ def main(argv):
history
=
history
.
replace
(
"
.dev0
"
,
"
(%s)
"
%
today_str
)
history
=
history
.
replace
(
"
.dev0
"
,
"
(%s)
"
%
today_str
)
open
(
history_path
,
"
w
"
).
write
(
history
)
open
(
history_path
,
"
w
"
).
write
(
history
)
planemo_
mod_path
=
os
.
path
.
join
(
PROJECT
_DIRECTORY
,
"
planemo
"
,
"
__init__.py
"
)
mod_path
=
os
.
path
.
join
(
MOD
_DIRECTORY
,
"
__init__.py
"
)
mod
=
open
(
planemo_
mod_path
,
"
r
"
).
read
()
mod
=
open
(
mod_path
,
"
r
"
).
read
()
mod
=
re
.
sub
(
"
__version__ =
'
[\d\.]*\.dev0
'"
,
mod
=
re
.
sub
(
"
__version__ =
'
[\d\.]*\.dev0
'"
,
"
__version__ =
'
%s
'"
%
version
,
"
__version__ =
'
%s
'"
%
version
,
mod
)
mod
)
mod
=
open
(
planemo_
mod_path
,
"
w
"
).
write
(
mod
)
mod
=
open
(
mod_path
,
"
w
"
).
write
(
mod
)
shell
([
"
git
"
,
"
commit
"
,
"
-m
"
,
"
Version %s
"
%
version
,
shell
([
"
git
"
,
"
commit
"
,
"
-m
"
,
"
Version %s
"
%
version
,
"
HISTORY.rst
"
,
"
planemo
/__init__.py
"
])
"
HISTORY.rst
"
,
"
%s
/__init__.py
"
%
PROJECT_NAME
])
shell
([
"
git
"
,
"
tag
"
,
version
])
shell
([
"
git
"
,
"
tag
"
,
version
])
...
...
This diff is collapsed.
Click to expand it.
tools/new_version.py
+
6
−
4
View file @
f6291040
...
@@ -6,7 +6,9 @@ import subprocess
...
@@ -6,7 +6,9 @@ import subprocess
import
sys
import
sys
PROJECT_NAME
=
"
pulsar
"
PROJECT_DIRECTORY
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"
..
"
)
PROJECT_DIRECTORY
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"
..
"
)
MOD_DIRECTORY
=
os
.
path
.
join
(
PROJECT_DIRECTORY
,
PROJECT_NAME
)
def
main
(
argv
):
def
main
(
argv
):
...
@@ -27,14 +29,14 @@ def main(argv):
...
@@ -27,14 +29,14 @@ def main(argv):
"""
%
version
)
"""
%
version
)
open
(
history_path
,
"
w
"
).
write
(
history
)
open
(
history_path
,
"
w
"
).
write
(
history
)
planemo_
mod_path
=
os
.
path
.
join
(
PROJECT
_DIRECTORY
,
"
planemo
"
,
"
__init__.py
"
)
mod_path
=
os
.
path
.
join
(
MOD
_DIRECTORY
,
"
__init__.py
"
)
mod
=
open
(
planemo_
mod_path
,
"
r
"
).
read
()
mod
=
open
(
mod_path
,
"
r
"
).
read
()
mod
=
re
.
sub
(
"
__version__ =
'
[\d\.]+
'"
,
mod
=
re
.
sub
(
"
__version__ =
'
[\d\.]+
'"
,
"
__version__ =
'
%s.dev0
'"
%
version
,
"
__version__ =
'
%s.dev0
'"
%
version
,
mod
,
1
)
mod
,
1
)
mod
=
open
(
planemo_
mod_path
,
"
w
"
).
write
(
mod
)
mod
=
open
(
mod_path
,
"
w
"
).
write
(
mod
)
shell
([
"
git
"
,
"
commit
"
,
"
-m
"
,
"
Starting work on %s
"
%
version
,
shell
([
"
git
"
,
"
commit
"
,
"
-m
"
,
"
Starting work on %s
"
%
version
,
"
HISTORY.rst
"
,
"
planemo
/__init__.py
"
])
"
HISTORY.rst
"
,
"
%s
/__init__.py
"
%
project_name
])
def
shell
(
cmds
,
**
kwds
):
def
shell
(
cmds
,
**
kwds
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment