From 1d010ca16c58611236a13dcd4fede7a477739d64 Mon Sep 17 00:00:00 2001 From: Marcel Hellkamp Date: Sat, 7 Sep 2024 18:48:36 +0200 Subject: [PATCH] docs: Rewrite paths of the developer guide. Twitter is dead, and we should not need to explain how to use git. --- docs/development.rst | 112 ++++--------------------------------------- 1 file changed, 9 insertions(+), 103 deletions(-) diff --git a/docs/development.rst b/docs/development.rst index 54b681b5c..9319edb76 100644 --- a/docs/development.rst +++ b/docs/development.rst @@ -10,9 +10,7 @@ Get involved There are several ways to join the community and stay up to date. Here are some of them: * **Mailing list**: Join our mailing list by sending an email to `bottlepy+subscribe@googlegroups.com `_ (no google account required). -* **Twitter**: `Follow us on Twitter `_ or search for the `#bottlepy `_ tag. -* **IRC**: Join `#bottlepy on irc.freenode.net `_ or use the `web chat interface `_. -* **Google plus**: We sometimes `blog about Bottle, releases and technical stuff `_ on our Google+ page. +* **IRC**: Join `#bottlepy on irc.libera.chat `_ or use the `web chat interface `_. Get the Sources @@ -23,24 +21,23 @@ The bottle `development repository `_ and th * **git:** ``git clone git://github.com/bottlepy/bottle.git`` * **git/https:** ``git clone https://github.com/bottlepy/bottle.git`` * **Download:** Development branch as `tar archive `_ or `zip file `_. -* **Translations:** `transifex.com/projects/p/bottle `_ Releases and Updates -------------------- -Bottle is released at irregular intervals and distributed through `PyPI `_. Release candidates and bugfix-revisions of outdated releases are only available from the git repository mentioned above. Some Linux distributions may offer packages for outdated releases, though. +Bottle is released at irregular intervals and distributed through `PyPI `_. Release candidates are only available from the git repository mentioned above. Debian and many other Linux distributions offer packages. -The Bottle version number splits into three parts (**major.minor.revision**). These are *not* used to promote new features but to indicate important bug-fixes and/or API changes. Critical bugs are fixed in at least the two latest minor releases and announced in all available channels (mailinglist, twitter, github). Non-critical bugs or features are not guaranteed to be backported. This may change in the future, through. +The Bottle version number splits into three parts (**major.minor.patch**) but does not follow the rules of `SemVer `_. Instead, you can usually rely on the following rules: Major Release (x.0) - The major release number is increased on important milestones or updates that completely break backward compatibility. You probably have to work over your entire application to use a new release. These releases are very rare, through. + The major release number is increased on important milestones that change the design of core parts of the framework and break backward compatibility in some fundamental way. You probably have to change parts of your application to use a new major release. These releases are very rare, through. Minor Release (x.y) - The minor release number is increased on updates that change the API or behaviour in some way. You might get some depreciation warnings any may have to tweak some configuration settings to restore the old behaviour, but in most cases these changes are designed to be backward compatible for at least one minor release. You should update to stay up do date, but don't have to. An exception is 0.8, which *will* break backward compatibility hard. (This is why 0.7 was skipped). Sorry about that. + The minor release number is increased whenever APIs or behavior changes in some backwards incompatible way or major features or new APIs are added. You might get some depreciation warnings any may have to tweak some configuration settings to restore the old behavior, but in most cases these changes are designed to be backward compatible for at least one minor release. You should update to stay up do date, but don't have to. -Revision (x.y.z) - The revision number is increased on bug-fixes and other patches that do not change the API or behaviour. You can safely update without editing your application code. In fact, you really should as soon as possible, because important security fixes are released this way. +Patches (x.y.z) + The patch number is increased on bug-fixes and other patches that do not change APIs or behaviour. You can safely update without editing your application code. In fact, you really should as soon as possible, because important security fixes are released this way. Pre-Release Versions Release candidates are marked by an ``rc`` in their revision number. These are API stable most of the time and open for testing, but not officially released yet. You should not use these for production. @@ -55,7 +52,7 @@ The source repository is structured as follows: This is the integration, testing and development branch. All changes that are planned to be part of the next release are merged and tested here. ``release-x.y`` branches - As soon as the master branch is (almost) ready for a new release, it is branched into a new release branch. This "release candidate" is feature-frozen but may receive bug-fixes and last-minute changes until it is considered production ready and officially released. From that point on it is called a "support branch" and still receives bug-fixes, but only important ones. The revision number is increased on each push to these branches, so you can keep up with important changes. + As soon as the master branch is (almost) ready for a new release, it is branched into a new release branch. This "release candidate" is feature-frozen but may receive bug-fixes and last-minute changes until it is considered production ready and officially released. From that point on it is called a "maintenance branch" and still receives bug-fixes, but only important ones. The patch number is increased on each push to these branches, so you can keep up with important changes. Feature branches All other branches are feature branches. These are based on the master branch and only live as long as they are still active and not merged back into ``master``. @@ -63,10 +60,7 @@ Feature branches .. rubric:: What does this mean for a developer? -If you want to add a feature, create a new branch from ``master``. If you want to fix a bug, branch ``release-x.y`` for each affected release. Please use a separate branch for each feature or bug to make integration as easy as possible. Thats all. There are git workflow examples at the bottom of this page. - -Oh, and never ever change the release number. We'll do that on integration. You never know in which order we pull pending requests anyway :) - +If you want to add a feature, create a new feature branch from ``master``. If you want to fix a bug, branch off of ``release-x.y`` for each affected release. Please use a separate branch for each feature or bug to make integration as easy as possible. .. rubric:: What does this mean for a maintainer ? @@ -84,94 +78,6 @@ The best way to get your changes integrated into the main development branch is * **Sync with upstream:** If the ``upstream/master`` branch changed while you were working on your patch, rebase or pull to make sure that your patch still applies without conflicts. -Building the Documentation --------------------------- - -You need a recent version of Sphinx to build the documentation. The recommended way is to install :command:`virtualenv` using your distribution package repository and install sphinx manually to get an up-to-date version. - -.. code-block:: bash - - # Install prerequisites - which virtualenv || sudo apt-get install python-virtualenv - virtualenv --no-site-dependencies venv - ./venv/pip install -U sphinx - - # Clone or download bottle from github - git clone https://github.com/bottlepy/bottle.git - - # Activate build environment - source ./venv/bin/activate - - # Build HTML docs - cd bottle/docs - make html - - # Optional: Install prerequisites for PDF generation - sudo apt-get install texlive-latex-extra \ - texlive-latex-recommended \ - texlive-fonts-recommended - - # Optional: Build the documentation as PDF - make latex - cd ../build/docs/latex - make pdf - - -GIT Workflow Examples ---------------------- - -The following examples assume that you have an (free) `github account `_. This is not mandatory, but makes things a lot easier. - -First of all you need to create a fork (a personal clone) of the official repository. To do this, you simply click the "fork" button on the `bottle project page `_. When the fork is done, you will be presented with a short introduction to your new repository. - -The fork you just created is hosted at github and read-able by everyone, but write-able only by you. Now you need to clone the fork locally to actually make changes to it. Make sure you use the private (read-write) URL and *not* the public (read-only) one:: - - git clone git@github.com:your_github_account/bottle.git - -Once the clone is complete your repository will have a remote named "origin" that points to your fork on github. Don’t let the name confuse you, this does not point to the original bottle repository, but to your own fork. To keep track of the official repository, add another remote named "upstream":: - - cd bottle - git remote add upstream git://github.com/bottlepy/bottle.git - git fetch upstream - -Note that "upstream" is a public clone URL, which is read-only. You cannot push changes directly to it. Instead, we will pull from your public repository. This is described later. - -.. rubric:: Submit a Feature - -New features are developed in separate feature-branches to make integration easy. Because they are going to be integrated into the ``master`` branch, they must be based on ``upstream/master``. To create a new feature-branch, type the following:: - - git checkout -b cool_feature upstream/master - -Now implement your feature, write tests, update the documentation, make sure that all tests pass and commit your changes:: - - git commit -a -m "Cool Feature" - -If the ``upstream/master`` branch changed in the meantime, there may be conflicts with your changes. To solve these, 'rebase' your feature-branch onto the top of the updated ``upstream/master`` branch:: - - git fetch upstream - git rebase upstream - -This is equivalent to undoing all your changes, updating your branch to the latest version and reapplying all your patches again. If you released your branch already (see next step), this is not an option because it rewrites your history. You can do a normal pull instead. Resolve any conflicts, run the tests again and commit. - -Now you are almost ready to send a pull request. But first you need to make your feature-branch public by pushing it to your github fork:: - - git push origin cool_feature - -After you’ve pushed your commit(s) you need to inform us about the new feature. One way is to send a pull-request using github. Another way would be to start a thread in the mailing-list, which is recommended. It allows other developers to see and discuss your patches and you get some feedback for free :) - -If we accept your patch, we will integrate it into the official development branch and make it part of the next release. - -.. rubric:: Fix a Bug - -The workflow for bug-fixes is very similar to the one for features, but there are some differences: - -1) Branch off of the affected release branches instead of just the development branch. -2) Write at least one test-case that triggers the bug. -3) Do this for each affected branch including ``upstream/master`` if it is affected. ``git cherry-pick`` may help you reducing repetitive work. -4) Name your branch after the release it is based on to avoid confusion. Examples: ``my_bugfix-x.y`` or ``my_bugfix-dev``. - - -