-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from arbulu89/release/3.8.0
Release/3.8.0
- Loading branch information
Showing
6 changed files
with
45 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,12 @@ | ||
# How to contribute | ||
|
||
To contribute to the project follow the next steps: | ||
## OBS Releases | ||
|
||
1. Fork the upstream project | ||
2. Create a new branch from **master**. Set meaningful name | ||
3. Add the new features | ||
4. Create/Update the unittary tests | ||
5. Make sure the CI pipelines are working | ||
- Travis CI for the unitary tests | ||
- Coveralls for the code coverage | ||
- Code climate for the code analysis | ||
6. Create a pull request (all of the previous steps shall be checked) | ||
The CI will automatically interact with SUSE's [Open Build Service](https://build.opensuse.org): the master branch will be kept in sync with the `network:ha-clustering:sap-deployments:devel` project (the development upstream), while a new Submit Request against the `openSUSE:Factory` project (the stable downstream) can be triggered by publishing a new GitHub release or pushing a new Git tag. | ||
|
||
# Releasing | ||
When releasing to `openSUSE:Factory`, please ensure that tags always follow the [SemVer](https://semver.org/) scheme, and that [the changelog](python-shaptools.changes) contains a new entry, otherwise the request submission might fail. | ||
|
||
When the new release is planned, all the accepted pull requests shall be merged, | ||
the version number updated and the new code released. | ||
#### Note to maintainers | ||
|
||
The OBS projects can be changed via various environment variables like `OBS_PROJECT` and `TARGET_PROJECT` in the Travis settings. | ||
You can enable the OBS delivery for feature branches in your own fork by setting the variable `DELIVER_BRANCHES` to a non-empty value. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<services> | ||
<service name="tar_scm" mode="disabled"> | ||
<param name="url">https://github.com/%%REPOSITORY%%.git</param> | ||
<param name="scm">git</param> | ||
<param name="exclude">.git</param> | ||
<param name="filename">python-shaptools</param> | ||
<param name="versionformat">@PARENT_TAG@+git.%ct.%h</param> | ||
<param name="revision">%%VERSION%%</param> | ||
</service> | ||
|
||
<service name="recompress" mode="disabled"> | ||
<param name="file">*.tar</param> | ||
<param name="compression">gz</param> | ||
</service> | ||
|
||
<service name="set_version" mode="disabled"> | ||
<param name="basename">python-shaptools</param> | ||
</service> | ||
</services> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
:since: 2018-11-15 | ||
""" | ||
|
||
__version__ = "0.3.2" | ||
__version__ = "0.3.8" |