Note: This information is only of use to Apache Celix Release Managers!
Steps to follow:
Interesting links:
Each Release Manager must have his own signing keys. Information about and instruction for the generation of these keys can be found on the Signing Releases page and How To OpenPGP. Be sure to follow the information provided on that site and its references.
The generated key can be uploaded to the MIT PGP Public Key Server.
Next, the public key signature must be added to the Celix KEYS file. Again, read the Signing Releases page for more information. This updated file needs to be uploaded to SVN at the following location:
A release will be prepared in a release branch. This branch is created from the master
branch.
git checkout master
git checkout -b release-X.Y.Z
git push origin release-X.Y.Z
For every release the related files must be updated. The following files are relevant:
Besides this information, the version needs to be bumped. Even though every bundle has its own version, a release is made with one overall version. This version is defined in the top-level CMakeLists.txt file and conanfile.py. Update the following pieces:
#top level CMakeList.txt
set(CELIX_MAJOR "X")
set(CELIX_MINOR "Y")
set(CELIX_MICRO "Z")
#conanfile.py
...
class CelixConan(ConanFile):
name = "celix"
version = "X.Y.Z"
...
Note: The DEFAULT_VERSION property is used as default version for new bundles and as such does not need to be updated when making a release.
Before creating a branch, be sure that the source compiles and tests run successfully. If there are any known shortcomings, make sure they are listed in the RELEASE_NOTES. Details for compiling and testing are available in the BUILDING file.
# Create a directory as sibling of the celix release directory
$ mkdir celix-build
$ cd celix-build
# Run CMake to generate the makefiles. Enable all BUILD options.
$ ccmake ../celix
$ make
$ make deploy
$ make test
Also verify that the provides examples work as expected. If needed ask other committers to test parts.
# Go to the deploy directory to see all examples
$ cd deploy
# Test the different examples, eg
$ cd hello_world
$ sh run.sh
# Depending on the example the output might be different. Most examples provide a shell to inspect the framework.
# To list the commands use the "help" command.
-> help
After verifying the build, run Apache RAT to check for any licensing problems. If Apache RAT is configured in the CMake build the “rat” target can be used to run the check.
# From the celix-build directory
# Run CMake to set the APACHE_RAT library (path to the JAR file).
$ ccmake ../celix
# Run RAT
$ make rat
Apache RAT should not raise any concerns, if there are, check the source files for a license header. If it is a false positive update the rat-excludes.txt file in the root of the project. Be sure it is a false positive! If in doubt, ask the mailing list! Third party licenses may need to be mentioned in the NOTICE file.
Since Celix only releases source artifacts, creating the artifact is simple and straightforward. First verify that all changes are committed to the release branch and the branch is pushed to GitHub.
# Checkout a clean celix repo (to prevent accidential adding IDE and/or build files)
$ git clone --branch release-X.Y.Z --single-branch https://github.com/apache/celix.git
# Create symbolic link so the archive has a directory with version information
$ ln -s celix celix-X.Y.Z
# Create GZip archive, exluding the git, github and asf.yaml files.
$ tar --exclude-vcs --exclude-vcs-ignores --exclude=".github" --exclude=".asf.yaml" -hczf celix-X.Y.Z.tar.gz celix-X.Y.Z
# The create symbolic link can be removed
$ unlink celix-X.Y.Z
# Test the created tarball using conan
$ tar xzf celix-X.Y.Z.tar.gz
$ conan create celix-X.Y.Z --build missing -o build_all=True
After creating the artifact, the file has to be signed. More information about signing can be found at Release signing.
# Generate SHA512 checksum
$ gpg --print-md SHA512 celix-X.Y.Z.tar.gz > celix-X.Y.Z.tar.gz.sha512
# Generate ASCII signature
$ gpg --armor --output celix-X.Y.Z.tar.gz.asc --detach-sig celix-X.Y.Z.tar.gz
Copy the archive of the source to the Apache Celix release development area (using SVN).
See the Apache Release Guide for more information.
Before a release is official a vote has to be held. More information on voting can be found on Apache Voting Process.
The first vote has to be done on the public mailing list of the project. The following template must be used for this vote:
To: dev@celix.apache.org
Subject: [VOTE] Release Apache Celix version X.Y.Z
This is the release vote for Apache Celix, version X.Y.Z.
It includes the following changes:
https://github.com/apache/celix/tree/COMMITID/CHANGES.md
Source files:
https://dist.apache.org/repos/dist/dev/celix/celix-X.Y.Z/
The commit ID to be voted upon:
COMMIT ID
https://github.com/apache/celix/tree/COMMITID
Celix's keys can be found at:
https://dist.apache.org/repos/dist/release/celix/KEYS
Information for voting on a release can be found at:
https://www.apache.org/legal/release-policy.html#approving-a-release
Please vote to approve this release:
[ ] +1 Approve the release
[ ] -1 Disapprove the release (please provide specific comments)
Note that an Apache release needs to be a Majority Approval (requires
at-least 3 binding +1 votes and more +1 votes than -1 votes).
If this release is approved I will promote it to an official release
(e.g. move from dist/dev to dist/release and tagging the release in git)
This vote will be open for at least 72 hours.
After this first vote the results must be posted to the “dev” list, see below for more information.
Note: Be sure to use the [VOTE] tag, this is used by the automated vote tracking system to keep track of outstanding vote threads.
As mentioned before, after each vote the results must be posted to the corresponding list. This “Result” vote contains the number of votes made, including whether a vote is binding or not. For a successful vote the following template can be used.
To: dev@celix.apache.org
Subject: [RESULT][VOTE] Release Celix version X.Y.Z
The vote has passed with the following result:
+1 Name of Approvers (binding)
+1 Name of Approvers (not binding)
...
The released artifact will be moved to the release area for mirroring.
The X.Y.Z tag will be created on the release branch and
the release branch will be merged with the master branch.
After the mirroring period the news & downloads of the website will be
updated and the release will be announced.
Thanks for voting.
Note: Be sure to post the vote result with the same topic as the original message. Also prepend the subject with [RESULT]. This is, again, needed to be able to keep track of vote threads.
If the vote is passed sucessfully the release branch can be merged to master, a release tag needs to be created, the release must be moved from the “dev” area to the “release” area and the release can be announced.
After changing all files a tag for the new release must be made. Before doing so, make sure all changed files are committed. A tag - named like rel/celix-X.Y.Z - needs to created and the release branch needs to be merged into master.
# To sign a tag using your GPG key, it is necessary to configure git with the key you want to use
# Configure git by issuing the following command, where E43F742E needs to be replaced with your key id
$ git config --global user.signingkey E43F742E
# Create the tag
$ git tag -s rel/celix-X.Y.Z -m 'Apache Celix Release X.Y.Z'
# Next thing to do is pushing the tag to the remote
$ git push origin rel/celix-X.Y.Z
$ git checkout master
$ git merge release-X.Y.Z
$ git push origin master
First remove the previous release from the “release” area.
Then use the following svn command to move the release artifacts from “dev” to “release”:
svn move https://dist.apache.org/repos/dist/dev/celix/celix-X.Y.Z https://dist.apache.org/repos/dist/release/celix/
Note that a svn move ensures that the voted released artifacts are moved as-is.
When a release is moved from the “dev” area to “release” area. The automated svnpubsub will move the artifact to the correct server for mirroring. Mirroring typically can take up to 24 hours.
Besides uploading the new release, the old release should be archived. Since archiving is already automated, it is only needed to delete the previous version from the release area. See the Apache Release Guide for more information.
See the Apache Release Guide for more information.
After these 24 hours the release can be announced.
After the release is available and tagged, the matching Doxygen documentation needs to be published. The following Jenkins job can be used for that: https://ci-builds.apache.org/job/Celix/job/doxygen-docs/
VERSION
field, enter the release number, e.g. 2.2.1
RELEASE
checkbox.BUILD
button.A build will be started after which a new directory will be created here.
An important thing after the release has been created is updating the website. The following needs to be updated:
latestVersion
in the config.tomlDocs
dropdown.celix-src
submodule to the correct release tagdocs.md
file within the release documentation directory (example path: source/docs/2.2.1/docs.md
, where 2.2.1 needs to be
substituted with the actual released version). This file can be copied and updated from e.g. a previous release.Once the site is updated proceed with announcing the release.
Additionally it is a good idea to post a message to “announce@apache.org”.
The following template must be used:
To: announce@apache.org, dev@celix.apache.org
Subject: [ANNOUNCE] Apache Celix X.Y.Z released
The Apache Celix team is pleased to announce the release of Apache Celix X.Y.Z.
Apache Celix is an implementation of the OSGi specification adapted to C and C++.
It is a framework to develop (dynamic) modular software applications using component and service-oriented programming.
This new release focuses on .... {add additional information for this release}
The release is available here:
https://celix.apache.org/download.cgi
The full change log is available here: {add link to CHANGES.md}
We welcome your help and feedback. For more information on how to report problems, and to get involved, visit the project website at https://celix.apache.org/
The Apache Celix Team
Note: the email must be sent from an @apache.org address