diff options
| -rw-r--r-- | CHANGES.rst | 201 | ||||
| -rw-r--r-- | HISTORY.rst | 216 | ||||
| -rw-r--r-- | README.rst | 10 | ||||
| -rw-r--r-- | docs/conf.py | 2 | ||||
| -rw-r--r-- | docs/narr/project.rst | 2 | ||||
| -rw-r--r-- | docs/quick_tour.rst | 4 | ||||
| -rw-r--r-- | docs/quick_tutorial/cookiecutters.rst | 2 | ||||
| -rw-r--r-- | docs/tutorials/modwsgi/index.rst | 2 | ||||
| -rw-r--r-- | docs/tutorials/wiki/installation.rst | 4 | ||||
| -rw-r--r-- | docs/tutorials/wiki2/installation.rst | 4 | ||||
| -rw-r--r-- | setup.py | 2 |
11 files changed, 234 insertions, 215 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index af09d2394..dd1f3ea52 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,215 +1,18 @@ -1.10 (2018-10-31) -================= - -- No major changes from 1.10b1. - -1.10b1 (2018-10-28) -=================== - -Bug Fixes ---------- - -- Fix the ``pyramid.testing.DummyRequest`` to support the new - ``request.accept`` API so that ``acceptable_offers`` is available even - when code sets the value to a string. - See https://github.com/Pylons/pyramid/pull/3396 - -- Fix deprecated escape sequences in preparation for Python 3.8. - See https://github.com/Pylons/pyramid/pull/3400 - -1.10a1 (2018-10-15) -=================== +unreleased +========== Features -------- -- Add a ``_depth`` and ``_category`` arguments to all of the venusian - decorators. The ``_category`` argument can be used to affect which actions - are registered when performing a ``config.scan(..., category=...)`` with a - specific category. The ``_depth`` argument should be used when wrapping - the decorator in your own. This change affects ``pyramid.view.view_config``, - ``pyramid.view.exception_view_config``, - ``pyramid.view.forbidden_view_config``, ``pyramid.view.notfound_view_config``, - ``pyramid.events.subscriber`` and ``pyramid.response.response_adapter`` - decorators. See https://github.com/Pylons/pyramid/pull/3105 and - https://github.com/Pylons/pyramid/pull/3122 - -- Fix the ``pyramid.request.Request`` class name after using - ``set_property`` or ``config.add_request_method`` such that the - ``str(request.__class__)`` would appear as ``pyramid.request.Request`` - instead of ``pyramid.util.Request``. - See https://github.com/Pylons/pyramid/pull/3129 - -- In ``cherrypy_server_runner``, prefer imports from the ``cheroot`` package - over the legacy imports from `cherrypy.wsgiserver`. - See https://github.com/Pylons/pyramid/pull/3235 - -- Add a context manager ``route_prefix_context`` to the - ``pyramid.config.Configurator`` to allow for convenient setting of the - route_prefix for ``include`` and ``add_route`` calls inside the context. - See https://github.com/Pylons/pyramid/pull/3279 - -- Modify the builtin session implementations to support ``SameSite`` options - on cookies and set the default to ``'Lax'``. This affects - ``pyramid.session.BaseCookieSessionFactory``, - ``pyramid.session.SignedCookieSessionFactory``, and - ``pyramid.session.UnencryptedCookieSessionFactoryConfig``. - See https://github.com/Pylons/pyramid/pull/3300 - -- Modify ``pyramid.authentication.AuthTktAuthenticationPolicy`` and - ``pyramid.csrf.CookieCSRFStoragePolicy`` to support the ``SameSite`` option - on cookies and set the default to ``'Lax'``. - See https://github.com/Pylons/pyramid/pull/3319 - -- Added new ``pyramid.httpexceptions.HTTPPermanentRedirect`` - exception/response object for a HTTP 308 redirect. - See https://github.com/Pylons/pyramid/pull/3302 - -- Within ``pshell``, allow the user-defined ``setup`` function to be a - generator, in which case it may wrap the command's lifecycle. - See https://github.com/Pylons/pyramid/pull/3318 - -- Within ``pshell``, variables defined by the ``[pshell]`` settings are - available within the user-defined ``setup`` function. - See https://github.com/Pylons/pyramid/pull/3318 - -- Add support for Python 3.7. Add testing on Python 3.8 with allowed failures. - See https://github.com/Pylons/pyramid/pull/3333 - -- Added the ``pyramid.config.Configurator.add_accept_view_order`` directive, - allowing users to specify media type preferences in ambiguous situations - such as when several views match. A default ordering is defined for media - types that prefers human-readable html/text responses over JSON. - See https://github.com/Pylons/pyramid/pull/3326 - -- Support a list of media types in the ``accept`` predicate used in - ``pyramid.config.Configurator.add_route``. - See https://github.com/Pylons/pyramid/pull/3326 - -- Added ``pyramid.session.JSONSerializer``. See "Upcoming Changes to ISession - in Pyramid 2.0" in the "Sessions" chapter of the documentation for more - information about this feature. - See https://github.com/Pylons/pyramid/pull/3353 - -- Add a ``registry`` argument to ``pyramid.renderers.get_renderer`` - to allow users to avoid threadlocals during renderer lookup. - See https://github.com/Pylons/pyramid/pull/3358 - -- Pyramid's test suite is no longer distributed with the universal wheel. - See https://github.com/Pylons/pyramid/pull/3387 - -- All Python code is now formatted automatically using ``black``. - See https://github.com/Pylons/pyramid/pull/3388 - Bug Fixes --------- -- Set appropriate ``code`` and ``title`` attributes on the ``HTTPClientError`` - and ``HTTPServerError`` exception classes. This prevents inadvertently - returning a 520 error code. - See https://github.com/Pylons/pyramid/pull/3280 - -- Replace ``webob.acceptparse.MIMEAccept`` from WebOb with - ``webob.acceptparse.create_accept_header`` in the HTTP exception handling - code. The old ``MIMEAccept`` has been deprecated. The new methods follow the - RFC's more closely. See https://github.com/Pylons/pyramid/pull/3251 - -- Catch extra errors like ``AttributeError`` when unpickling "trusted" - session cookies with bad pickle data in them. This would occur when sharing - a secret between projects that shouldn't actually share session cookies, - like when reusing secrets between projects in development. - See https://github.com/Pylons/pyramid/pull/3325 - Deprecations ------------ -- The ``pyramid.intefaces.ISession`` interface will move to require - JSON-serializable objects in Pyramid 2.0. See - "Upcoming Changes to ISession in Pyramid 2.0" in the "Sessions" chapter - of the documentation for more information about this change. - See https://github.com/Pylons/pyramid/pull/3353 - -- The ``pyramid.session.signed_serialize`` and - ``pyramid.session.signed_deserialize`` functions will be removed in Pyramid - 2.0, along with the removal of - ``pyramid.session.UnencryptedCookieSessionFactoryConfig`` which was - deprecated in Pyramid 1.5. Please switch to using the - ``SignedCookieSessionFactory``, copying the code, or another session - implementation if you're still using these features. - See https://github.com/Pylons/pyramid/pull/3353 - -- Media ranges are deprecated in the ``accept`` argument of - ``pyramid.config.Configurator.add_route``. Use a list of explicit - media types to ``add_route`` to support multiple types. - -- Media ranges are deprecated in the ``accept`` argument of - ``pyramid.config.Configurator.add_view``. There is no replacement for - ranges to ``add_view``, but after much discussion the workflow is - fundamentally ambiguous in the face of various client-supplied values for - the ``Accept`` header. - See https://github.com/Pylons/pyramid/pull/3326 - Backward Incompatibilities -------------------------- -- On Python 3.4+ the ``repoze.lru`` dependency is dropped. If you were using - this package directly in your apps you should make sure that you are - depending on it directly within your project. - See https://github.com/Pylons/pyramid/pull/3140 - -- Remove the ``permission`` argument from - ``pyramid.config.Configurator.add_route``. This was an argument left over - from a feature removed in Pyramid 1.5 and has had no effect since then. - See https://github.com/Pylons/pyramid/pull/3299 - -- Modify the builtin session implementations to set ``SameSite='Lax'`` on - cookies. This affects ``pyramid.session.BaseCookieSessionFactory``, - ``pyramid.session.SignedCookieSessionFactory``, and - ``pyramid.session.UnencryptedCookieSessionFactoryConfig``. - See https://github.com/Pylons/pyramid/pull/3300 - -- Variables defined in the ``[pshell]`` section of the settings will no - longer override those set by the ``setup`` function. - See https://github.com/Pylons/pyramid/pull/3318 - -- ``pyramid.config.Configurator.add_notfound_view`` uses default redirect - class exception ``pyramid.httpexceptions.HTTPTemporaryRedirect`` instead - of previous ``pyramid.httpexceptions.HTTPFound``. - See https://github.com/Pylons/pyramid/pull/3328 - -- Removed ``pyramid.config.Configurator.set_request_property`` which had been - deprecated since Pyramid 1.5. Instead use - ``pyramid.config.Configurator.add_request_method`` with ``reify=True`` or - ``property=True``. - See https://github.com/Pylons/pyramid/pull/3368 - -- Removed the ``principal`` keyword argument from - ``pyramid.security.remember`` which had been deprecated since Pyramid 1.6 - and replaced by the ``userid`` argument. - See https://github.com/Pylons/pyramid/pull/3369 - -- Removed the ``pyramid.tests`` subpackage that used to contain the Pyramid - test suite. These changes also changed the format of the repository to move - the code into a ``src`` folder. - See https://github.com/Pylons/pyramid/pull/3387 - Documentation Changes --------------------- -- Ad support for Read The Docs Ethical Ads. - See https://github.com/Pylons/pyramid/pull/3360 and - https://docs.readthedocs.io/en/latest/advertising/ethical-advertising.html - -- Add support for alembic to the pyramid-cookiecutter-alchemy cookiecutter - and update the wiki2 tutorial to explain how it works. - See https://github.com/Pylons/pyramid/pull/3307 and - https://github.com/Pylons/pyramid-cookiecutter-alchemy/pull/7 - -- Bump Sphinx to >= 1.7.4 in setup.py to support ``emphasize-lines`` in PDFs - and to pave the way for xelatex support. See - https://github.com/Pylons/pyramid/pull/3271, - https://github.com/Pylons/pyramid/issues/667, and - https://github.com/Pylons/pyramid/issues/2572 - -- Added extra tests to the quick tutorial. - See https://github.com/Pylons/pyramid/pull/3375 diff --git a/HISTORY.rst b/HISTORY.rst index 8a92eadcc..36f1f52de 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,3 +1,219 @@ +1.10 (2018-10-31) +================= + +- No major changes from 1.10b1. + +1.10b1 (2018-10-28) +=================== + +Bug Fixes +--------- + +- Fix the ``pyramid.testing.DummyRequest`` to support the new + ``request.accept`` API so that ``acceptable_offers`` is available even + when code sets the value to a string. + See https://github.com/Pylons/pyramid/pull/3396 + +- Fix deprecated escape sequences in preparation for Python 3.8. + See https://github.com/Pylons/pyramid/pull/3400 + +1.10a1 (2018-10-15) +=================== + +Features +-------- + +- Add a ``_depth`` and ``_category`` arguments to all of the venusian + decorators. The ``_category`` argument can be used to affect which actions + are registered when performing a ``config.scan(..., category=...)`` with a + specific category. The ``_depth`` argument should be used when wrapping + the decorator in your own. This change affects ``pyramid.view.view_config``, + ``pyramid.view.exception_view_config``, + ``pyramid.view.forbidden_view_config``, ``pyramid.view.notfound_view_config``, + ``pyramid.events.subscriber`` and ``pyramid.response.response_adapter`` + decorators. See https://github.com/Pylons/pyramid/pull/3105 and + https://github.com/Pylons/pyramid/pull/3122 + +- Fix the ``pyramid.request.Request`` class name after using + ``set_property`` or ``config.add_request_method`` such that the + ``str(request.__class__)`` would appear as ``pyramid.request.Request`` + instead of ``pyramid.util.Request``. + See https://github.com/Pylons/pyramid/pull/3129 + +- In ``cherrypy_server_runner``, prefer imports from the ``cheroot`` package + over the legacy imports from `cherrypy.wsgiserver`. + See https://github.com/Pylons/pyramid/pull/3235 + +- Add a context manager ``route_prefix_context`` to the + ``pyramid.config.Configurator`` to allow for convenient setting of the + route_prefix for ``include`` and ``add_route`` calls inside the context. + See https://github.com/Pylons/pyramid/pull/3279 + +- Modify the builtin session implementations to support ``SameSite`` options + on cookies and set the default to ``'Lax'``. This affects + ``pyramid.session.BaseCookieSessionFactory``, + ``pyramid.session.SignedCookieSessionFactory``, and + ``pyramid.session.UnencryptedCookieSessionFactoryConfig``. + See https://github.com/Pylons/pyramid/pull/3300 + +- Modify ``pyramid.authentication.AuthTktAuthenticationPolicy`` and + ``pyramid.csrf.CookieCSRFStoragePolicy`` to support the ``SameSite`` option + on cookies and set the default to ``'Lax'``. + See https://github.com/Pylons/pyramid/pull/3319 + +- Added new ``pyramid.httpexceptions.HTTPPermanentRedirect`` + exception/response object for a HTTP 308 redirect. + See https://github.com/Pylons/pyramid/pull/3302 + +- Within ``pshell``, allow the user-defined ``setup`` function to be a + generator, in which case it may wrap the command's lifecycle. + See https://github.com/Pylons/pyramid/pull/3318 + +- Within ``pshell``, variables defined by the ``[pshell]`` settings are + available within the user-defined ``setup`` function. + See https://github.com/Pylons/pyramid/pull/3318 + +- Add support for Python 3.7. Add testing on Python 3.8 with allowed failures. + See https://github.com/Pylons/pyramid/pull/3333 + +- Added the ``pyramid.config.Configurator.add_accept_view_order`` directive, + allowing users to specify media type preferences in ambiguous situations + such as when several views match. A default ordering is defined for media + types that prefers human-readable html/text responses over JSON. + See https://github.com/Pylons/pyramid/pull/3326 + +- Support a list of media types in the ``accept`` predicate used in + ``pyramid.config.Configurator.add_route``. + See https://github.com/Pylons/pyramid/pull/3326 + +- Added ``pyramid.session.JSONSerializer``. See "Upcoming Changes to ISession + in Pyramid 2.0" in the "Sessions" chapter of the documentation for more + information about this feature. + See https://github.com/Pylons/pyramid/pull/3353 + +- Add a ``registry`` argument to ``pyramid.renderers.get_renderer`` + to allow users to avoid threadlocals during renderer lookup. + See https://github.com/Pylons/pyramid/pull/3358 + +- Pyramid's test suite is no longer distributed with the universal wheel. + See https://github.com/Pylons/pyramid/pull/3387 + +- All Python code is now formatted automatically using ``black``. + See https://github.com/Pylons/pyramid/pull/3388 + +Bug Fixes +--------- + +- Set appropriate ``code`` and ``title`` attributes on the ``HTTPClientError`` + and ``HTTPServerError`` exception classes. This prevents inadvertently + returning a 520 error code. + See https://github.com/Pylons/pyramid/pull/3280 + +- Replace ``webob.acceptparse.MIMEAccept`` from WebOb with + ``webob.acceptparse.create_accept_header`` in the HTTP exception handling + code. The old ``MIMEAccept`` has been deprecated. The new methods follow the + RFC's more closely. See https://github.com/Pylons/pyramid/pull/3251 + +- Catch extra errors like ``AttributeError`` when unpickling "trusted" + session cookies with bad pickle data in them. This would occur when sharing + a secret between projects that shouldn't actually share session cookies, + like when reusing secrets between projects in development. + See https://github.com/Pylons/pyramid/pull/3325 + +Deprecations +------------ + +- The ``pyramid.intefaces.ISession`` interface will move to require + JSON-serializable objects in Pyramid 2.0. See + "Upcoming Changes to ISession in Pyramid 2.0" in the "Sessions" chapter + of the documentation for more information about this change. + See https://github.com/Pylons/pyramid/pull/3353 + +- The ``pyramid.session.signed_serialize`` and + ``pyramid.session.signed_deserialize`` functions will be removed in Pyramid + 2.0, along with the removal of + ``pyramid.session.UnencryptedCookieSessionFactoryConfig`` which was + deprecated in Pyramid 1.5. Please switch to using the + ``SignedCookieSessionFactory``, copying the code, or another session + implementation if you're still using these features. + See https://github.com/Pylons/pyramid/pull/3353 + +- Media ranges are deprecated in the ``accept`` argument of + ``pyramid.config.Configurator.add_route``. Use a list of explicit + media types to ``add_route`` to support multiple types. + +- Media ranges are deprecated in the ``accept`` argument of + ``pyramid.config.Configurator.add_view``. There is no replacement for + ranges to ``add_view``, but after much discussion the workflow is + fundamentally ambiguous in the face of various client-supplied values for + the ``Accept`` header. + See https://github.com/Pylons/pyramid/pull/3326 + +Backward Incompatibilities +-------------------------- + +- On Python 3.4+ the ``repoze.lru`` dependency is dropped. If you were using + this package directly in your apps you should make sure that you are + depending on it directly within your project. + See https://github.com/Pylons/pyramid/pull/3140 + +- Remove the ``permission`` argument from + ``pyramid.config.Configurator.add_route``. This was an argument left over + from a feature removed in Pyramid 1.5 and has had no effect since then. + See https://github.com/Pylons/pyramid/pull/3299 + +- Modify the builtin session implementations to set ``SameSite='Lax'`` on + cookies. This affects ``pyramid.session.BaseCookieSessionFactory``, + ``pyramid.session.SignedCookieSessionFactory``, and + ``pyramid.session.UnencryptedCookieSessionFactoryConfig``. + See https://github.com/Pylons/pyramid/pull/3300 + +- Variables defined in the ``[pshell]`` section of the settings will no + longer override those set by the ``setup`` function. + See https://github.com/Pylons/pyramid/pull/3318 + +- ``pyramid.config.Configurator.add_notfound_view`` uses default redirect + class exception ``pyramid.httpexceptions.HTTPTemporaryRedirect`` instead + of previous ``pyramid.httpexceptions.HTTPFound``. + See https://github.com/Pylons/pyramid/pull/3328 + +- Removed ``pyramid.config.Configurator.set_request_property`` which had been + deprecated since Pyramid 1.5. Instead use + ``pyramid.config.Configurator.add_request_method`` with ``reify=True`` or + ``property=True``. + See https://github.com/Pylons/pyramid/pull/3368 + +- Removed the ``principal`` keyword argument from + ``pyramid.security.remember`` which had been deprecated since Pyramid 1.6 + and replaced by the ``userid`` argument. + See https://github.com/Pylons/pyramid/pull/3369 + +- Removed the ``pyramid.tests`` subpackage that used to contain the Pyramid + test suite. These changes also changed the format of the repository to move + the code into a ``src`` folder. + See https://github.com/Pylons/pyramid/pull/3387 + +Documentation Changes +--------------------- + +- Ad support for Read The Docs Ethical Ads. + See https://github.com/Pylons/pyramid/pull/3360 and + https://docs.readthedocs.io/en/latest/advertising/ethical-advertising.html + +- Add support for alembic to the pyramid-cookiecutter-alchemy cookiecutter + and update the wiki2 tutorial to explain how it works. + See https://github.com/Pylons/pyramid/pull/3307 and + https://github.com/Pylons/pyramid-cookiecutter-alchemy/pull/7 + +- Bump Sphinx to >= 1.7.4 in setup.py to support ``emphasize-lines`` in PDFs + and to pave the way for xelatex support. See + https://github.com/Pylons/pyramid/pull/3271, + https://github.com/Pylons/pyramid/issues/667, and + https://github.com/Pylons/pyramid/issues/2572 + +- Added extra tests to the quick tutorial. + See https://github.com/Pylons/pyramid/pull/3375 + 1.9 (2017-06-26) ================ diff --git a/README.rst b/README.rst index 451fe8175..41da33fcb 100644 --- a/README.rst +++ b/README.rst @@ -1,13 +1,13 @@ Pyramid ======= -.. image:: https://travis-ci.org/Pylons/pyramid.png?branch=1.10-branch +.. image:: https://travis-ci.org/Pylons/pyramid.png?branch=master :target: https://travis-ci.org/Pylons/pyramid - :alt: 1.10-branch Travis CI Status + :alt: master Travis CI Status -.. image:: https://readthedocs.org/projects/pyramid/badge/?version=1.10-branch - :target: https://docs.pylonsproject.org/projects/pyramid/en/1.10-branch - :alt: 1.10-branch Documentation Status +.. image:: https://readthedocs.org/projects/pyramid/badge/?version=master + :target: https://docs.pylonsproject.org/projects/pyramid/en/master + :alt: master Documentation Status .. image:: https://img.shields.io/badge/irc-freenode-blue.svg :target: https://webchat.freenode.net/?channels=pyramid diff --git a/docs/conf.py b/docs/conf.py index a101aa503..15cffb1eb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -157,7 +157,7 @@ html_theme_options = dict( github_url='https://github.com/Pylons/pyramid', # On master branch and new branch still in # pre-release status: true; else: false. - in_progress='false', + in_progress='true', # On branches previous to "latest": true; else: false. outdated='false', ) diff --git a/docs/narr/project.rst b/docs/narr/project.rst index 6dec36354..725263407 100644 --- a/docs/narr/project.rst +++ b/docs/narr/project.rst @@ -83,7 +83,7 @@ On all platforms, generate a project using cookiecutter. .. code-block:: bash - cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout 1.10-branch + cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout master If prompted for the first item, accept the default ``yes`` by hitting return. diff --git a/docs/quick_tour.rst b/docs/quick_tour.rst index c3823b40c..1e2c71cf0 100644 --- a/docs/quick_tour.rst +++ b/docs/quick_tour.rst @@ -510,7 +510,7 @@ Let's use the cookiecutter ``pyramid-cookiecutter-starter`` to create a starter .. code-block:: bash - $VENV/bin/cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout 1.10-branch + $VENV/bin/cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout master If prompted for the first item, accept the default ``yes`` by hitting return. @@ -863,7 +863,7 @@ Pyramid and SQLAlchemy are great friends. That friendship includes a cookiecutte .. code-block:: bash cd ~ - env/bin/cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout 1.10-branch + env/bin/cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout master If prompted for the first item, accept the default ``yes`` by hitting return. diff --git a/docs/quick_tutorial/cookiecutters.rst b/docs/quick_tutorial/cookiecutters.rst index a566e3387..e4a585a33 100644 --- a/docs/quick_tutorial/cookiecutters.rst +++ b/docs/quick_tutorial/cookiecutters.rst @@ -28,7 +28,7 @@ Steps .. code-block:: bash - $VENV/bin/cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout 1.10-branch + $VENV/bin/cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout master If prompted for the first item, accept the default ``yes`` by hitting return. diff --git a/docs/tutorials/modwsgi/index.rst b/docs/tutorials/modwsgi/index.rst index f530cd4fd..fa0d4f0cb 100644 --- a/docs/tutorials/modwsgi/index.rst +++ b/docs/tutorials/modwsgi/index.rst @@ -39,7 +39,7 @@ specific path information for commands and files. .. code-block:: bash cd ~ - cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout 1.10-branch + cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout master If prompted for the first item, accept the default ``yes`` by hitting return. diff --git a/docs/tutorials/wiki/installation.rst b/docs/tutorials/wiki/installation.rst index a375a6b3a..d0037e584 100644 --- a/docs/tutorials/wiki/installation.rst +++ b/docs/tutorials/wiki/installation.rst @@ -31,7 +31,7 @@ On Unix .. code-block:: bash cd ~ - cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout 1.10-branch + cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout master On Windows ^^^^^^^^^^ @@ -39,7 +39,7 @@ On Windows .. code-block:: doscon cd \ - cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout 1.10-branch + cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout master On all operating systems ^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/docs/tutorials/wiki2/installation.rst b/docs/tutorials/wiki2/installation.rst index 4de2fa292..924927cd4 100644 --- a/docs/tutorials/wiki2/installation.rst +++ b/docs/tutorials/wiki2/installation.rst @@ -43,7 +43,7 @@ On Unix .. code-block:: bash cd ~ - cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout 1.10-branch + cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout master On Windows ^^^^^^^^^^ @@ -51,7 +51,7 @@ On Windows .. code-block:: doscon cd \ - cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout 1.10-branch + cookiecutter gh:Pylons/pyramid-cookiecutter-starter --checkout master On all operating systems ^^^^^^^^^^^^^^^^^^^^^^^^ @@ -23,7 +23,7 @@ def readfile(name): README = readfile('README.rst') CHANGES = readfile('CHANGES.rst') -VERSION = '1.10' +VERSION = '2.0.dev0' install_requires = [ 'hupper', |
