Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-pylib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
caosdb
Software
caosdb-pylib
Commits
74c639c5
Verified
Commit
74c639c5
authored
4 years ago
by
Timm Fitschen
Browse files
Options
Downloads
Patches
Plain Diff
REL: preparing release
parent
fb85f4b6
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.md
+14
-0
14 additions, 0 deletions
CHANGELOG.md
DEPENDENCIES.md
+4
-0
4 additions, 0 deletions
DEPENDENCIES.md
RELEASE_GUIDELINES.md
+14
-8
14 additions, 8 deletions
RELEASE_GUIDELINES.md
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
33 additions
and
9 deletions
CHANGELOG.md
+
14
−
0
View file @
74c639c5
...
...
@@ -9,6 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ###
### Changed ###
### Deprecated ###
### Removed ###
### Fixed ###
### Security ###
## [0.4.1] 2021-02-10 ##
### Added ###
*
Versioning support (experimental). The version db.Version class can
represents particular entity versions and also the complete history of an
entity.
...
...
This diff is collapsed.
Click to expand it.
DEPENDENCIES.md
0 → 100644
+
4
−
0
View file @
74c639c5
Python 3.5 or later
pip 20.0.2 or later
Any other dependencies are being installed via pip
This diff is collapsed.
Click to expand it.
RELEASE_GUIDELINES.md
+
14
−
8
View file @
74c639c5
...
...
@@ -16,21 +16,27 @@ guidelines of the CaosDB Project
1.
Create a release branch from the dev branch. This prevents further changes
to the code base and a never ending release process. Naming:
`release-<VERSION>`
2.
Check all general prerequisites.
2.
Update CHANGELOG.md
3.
Prepare
[
setup.py
](
./setup.py
)
: Update the
`MAJOR`
,
`MINOR`
,
`MICRO`
,
`PRE`
3.
Check all general prerequisites.
4.
Prepare
[
setup.py
](
./setup.py
)
: Check the
`MAJOR`
,
`MINOR`
,
`MICRO`
,
`PRE`
variables and set
`ISRELEASED`
to
`True`
. Use the possibility to issue
pre-release versions for testing.
4
.
Merge the release branch into the master branch.
5
.
Merge the release branch into the master branch.
5
.
Tag the latest commit of the master branch with
`v<VERSION>`
.
6
.
Tag the latest commit of the master branch with
`v<VERSION>`
.
6
.
Delete the release branch.
7
.
Delete the release branch.
7
.
Remove possibly existing
`./dist`
directory with old release.
8
.
Remove possibly existing
`./dist`
directory with old release.
8
.
Publish the release by executing
`./release.sh`
with uploads the caosdb
9
.
Publish the release by executing
`./release.sh`
with uploads the caosdb
module to the Python Package Index
[
pypi.org
](
https://pypi.org
)
.
9.
Merge the master branch back into the dev branch.
10.
Merge the master branch back into the dev branch.
11.
After the merge of master to dev, start a new development version by
setting
`ISRELEASED`
to
`False`
and by increasing at least the
`MIRCO`
version in
[
setup.py
](
./setup.py
)
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
74c639c5
...
...
@@ -49,7 +49,7 @@ MAJOR = 0
MINOR
=
4
MICRO
=
1
PRE
=
""
# e.g. rc0, alpha.1, 0.beta-23
ISRELEASED
=
Fals
e
ISRELEASED
=
Tru
e
if
PRE
:
VERSION
=
"
{}.{}.{}-{}
"
.
format
(
MAJOR
,
MINOR
,
MICRO
,
PRE
)
...
...
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