-
Notifications
You must be signed in to change notification settings - Fork 32
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
1 parent
012e549
commit 77e0c95
Showing
8 changed files
with
101 additions
and
30 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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Changes | ||
======= | ||
|
||
This is a record of all past ``respy`` releases and what went into them in reverse | ||
chronological order. We follow `semantic versioning <https://semver.org/>`_ and all | ||
releases are available on `PyPI <https://pypi.org/project/respy/>`_. | ||
|
||
2.0.0 - 2019- | ||
------------- | ||
|
||
- `#162 <https://github.com/OpenSourceEconomics/respy/pull/162>`_ is a wrapper around | ||
multiple PRs in which a new Python version is implemented. | ||
- `#150 <https://github.com/OpenSourceEconomics/respy/pull/150>`_ implements a new | ||
interface. | ||
- `#133 <https://github.com/OpenSourceEconomics/respy/pull/133>`_ and `#140 | ||
<https://github.com/OpenSourceEconomics/respy/pull/140>`_ add Appveyor to test respy | ||
on Windows. | ||
- `#67 <https://github.com/OpenSourceEconomics/respy/pull/67>`_ removes everything | ||
related to ambiguity. | ||
|
||
1.0.0 - 2016-09-01 | ||
------------------ | ||
|
||
This is the initial release of the ``respy`` package. |
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,7 @@ | ||
API | ||
=== | ||
|
||
The API provides detailed descriptions of ``respy`` classes and functions. It | ||
should be helpful if you plan to extend ``respy`` with custom components. | ||
|
||
.. autoclass:: respy.clsRespy.RespyCls |
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,28 +1 @@ | ||
Changes | ||
======= | ||
|
||
This is a record of all past ``respy`` releases and what went into them in reverse | ||
chronological order. We follow `semantic versioning <https://semver.org/>`_ and all | ||
releases are available on `PyPI <https://pypi.org/project/respy/>`_. | ||
|
||
.. todo:: | ||
|
||
Add more information on version changes. | ||
|
||
2.0.0 - 2019- | ||
------------- | ||
|
||
- `#162 <https://github.com/OpenSourceEconomics/respy/pull/162>`_ is a wrapper around | ||
multiple PRs in which a new Python version is implemented. | ||
- `#150 <https://github.com/OpenSourceEconomics/respy/pull/150>`_ implements a new | ||
interface. | ||
- `#133 <https://github.com/OpenSourceEconomics/respy/pull/133>`_ and `#140 | ||
<https://github.com/OpenSourceEconomics/respy/pull/140>`_ add Appveyor to test respy | ||
on Windows. | ||
- `#67 <https://github.com/OpenSourceEconomics/respy/pull/67>`_ removes everything | ||
related to ambiguity. | ||
|
||
1.0.0 - 2016-09-01 | ||
------------------ | ||
|
||
This is the initial release of the ``respy`` package. | ||
.. include:: ../CHANGES.rst |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
Releases | ||
======== | ||
|
||
What is the new version number? | ||
------------------------------- | ||
|
||
The version number depends on the severity of the changes and adheres to `semantic | ||
versioning <https://semver.org/>`_. | ||
|
||
You are also allowed to append ``rc1`` after the last digit to indicate the first or | ||
higher release candidates. By that, you can test the release and deployment on PyPI and | ||
release preliminary versions. | ||
|
||
|
||
How to release a new version? | ||
----------------------------- | ||
|
||
1. At first, we need to create a new PR to prepare everything for the new version. We | ||
need to | ||
|
||
- update all mentions of the old version number | ||
- update information in ``CHANGES.rst`` to have summary of the changes which | ||
can also be posted in the Github repository under the tag. | ||
|
||
2. After the PR is merged into master, go to the master branch in your local repository | ||
and pull the latest changes. Make sure that the current tip of the branch corresponds | ||
to the state where you want to set the new version. Then, type | ||
|
||
.. code-block:: bash | ||
$ git tag -m "x.x.x" | ||
to create a tag with the version number. After that, you need to push the tag to the | ||
remote repository which triggers a Travis-CI build and deployment to PyPI. | ||
|
||
.. code-block:: bash | ||
$ git push --tags | ||
3. Make sure that the new release was indeed published by checking `PyPI | ||
<https://pypi.org/project/respy/>`_. Also, copy the information from the new release | ||
in ``CHANGES.rst`` and post it under the `new release | ||
<https://github.com/OpenSourceEconomics/respy/releases/>`_. | ||
|
||
4. Spread the word! |
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