diff --git a/README_development.html b/README_development.html deleted file mode 100644 index 2c4d922..0000000 --- a/README_development.html +++ /dev/null @@ -1,366 +0,0 @@ - - - - - - -JayDeBeApi - Development notes - - - -
-

JayDeBeApi - Development notes

- -

Some notes for development.

-
-

Contents

- -
-
-

Build a new release

-
    -
  1. Sync the branch.

    -
    -$ bzr pull
    -
    -
  2. -
  3. Do your changes.

    -
  4. -
  5. Add a changelog entry to README.rst.

    -
  6. -
  7. Increase version in setup.py.

    -
  8. -
  9. Run setuptools to ensure everything is working as expected.

    -
    -$ python setup.py sdist
    -
    -
  10. -
  11. Commit your changes.

    -
    -$ bzr ci -m "my comment"
    -
    -
  12. -
  13. Tag for the new version.

    -
    -$ bzr tag jaydebeapi-0.1.2
    -
    -
  14. -
  15. Send changes to launchpad.

    -
    -$ bzr push
    -
    -
  16. -
  17. Publish new release on PyPi.

    -
    -$ python setup.py sdist --formats=gztar upload
    -
    -
  18. -
-
-
- - diff --git a/README_development.rst b/README_development.rst new file mode 100644 index 0000000..39cdf23 --- /dev/null +++ b/README_development.rst @@ -0,0 +1,40 @@ +================================ + JayDeBeApi - Development notes +================================ + +Some notes for development. + +.. contents:: + +Build a new release +=================== + +1. Sync the branch. :: + + $ bzr pull + +2. Do your changes. + +3. Add a changelog entry to ``README.rst``. + +4. Increase version in ``setup.py``. + +5. Run setuptools to ensure everything is working as expected. :: + + $ python setup.py sdist + +6. Commit your changes. :: + + $ bzr ci -m "my comment" + +7. Tag for the new version. :: + + $ bzr tag jaydebeapi-0.1.2 + +8. Send changes to launchpad. :: + + $ bzr push + +9. Publish new release on PyPi. :: + + $ python setup.py sdist --formats=gztar upload