forked from bluthg/odbc_fdw
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rafa de la Torre
committed
Feb 20, 2018
1 parent
3dca5e0
commit 49f6576
Showing
2 changed files
with
24 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# How to release | ||
|
||
## Release procedure | ||
1. Make sure tests are passing in [travis](https://travis-ci.org/CartoDB/odbc_fdw). Fix if broken before proceeding. | ||
1. Ensure there's a proper `default_version` set in the [odbc_fdw.control](https://github.com/CartoDB/odbc_fdw/blob/master/odbc_fdw.control) file. | ||
1. Ensure [NEWS.md](https://github.com/CartoDB/odbc_fdw/blob/master/NEWS.md) section exists for the new version, review it, update the release notes and date. | ||
1. Create the required [extension sql files](https://www.postgresql.org/docs/10/static/extend-extensions.html#id-1.8.3.18.11). There must be new `odbc_fdw--next.sql`, `odbc_fdw--previous--next.sql` and `odbc_fdw--next--previous.sql` to be able to install it from scratch, upgrade and downgrade it. | ||
1. Update the [Makefile](https://github.com/CartoDB/odbc_fdw/blob/master/Makefile) with the extension sql files (`DATA` section). | ||
1. Commit `odbc_fdw.control`, `NEWS.md`, `Makefile` and the extension sql files. | ||
1. git tag -a Major.Minor.Patch # use NEWS.md section as content. | ||
|
||
|
||
## Version numbering convention | ||
|
||
We try to stick to [semantic versioning v2.0.0](https://semver.org/spec/v2.0.0.html): | ||
|
||
> Given a version number MAJOR.MINOR.PATCH, increment the: | ||
> | ||
> 1. MAJOR version when you make incompatible API changes, | ||
> 2. MINOR version when you add functionality in a backwards-compatible manner, and | ||
> 3. PATCH version when you make backwards-compatible bug fixes. | ||
> | ||
> Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format. |
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