Metadata-Version: 1.1
Name: plone.releaser
Version: 1.4
Summary: Plone release management utilities
Home-page: https://github.com/plone/plone.releaser
Author: Eric Steele
Author-email: eric@esteele.net
License: GPL
Description: Introduction
        ============
        
        Tools to make managing Plone core releases easier.
        
        Installation
        ------------
        
        To install plone.releaser add it to your buildout::
        
          [release]
          recipe = zc.recipe.egg
          eggs =  plone.releaser
        
        To make it available in buildout.coredev, run buildout with releaser.cfg::
        
          $ bin/buildout -c releaser.cfg
        
        Usage
        -----
        
        Check PyPi access to all Plone packages for a certain user::
        
          $ bin/manage checkPypi timo
        
        Check a package for updates::
        
          $ bin/manage checkPackageForUpdates Products.CMFPlone
        
        Report packages with changes::
        
          $ bin/manage report --interactive
        
        Pulls::
        
          $ bin/manage pulls
        
        Changelog::
        
          $ bin/manage changelog
        
        Launchpad::
        
          $ bin/manage launchpad
        
        Check checkout::
        
          $ bin/manage check-checkout
        
        Append Jenkins build number to package version::
        
          $ bin/append-jenkins-build-number-to-package-version
        
        Set package version::
        
          $ bin/set-package-version
        
        Changelog
        =========
        
        1.4 (2016-02-11)
        ----------------
        
        New:
        
        - Removed our 'show changelog' entry point.  Required zest.releaser
          6.6.0 that has this itself.  [maurits]
        
        - Show ``New:`` and ``Fixes:`` in unified changelog.  [maurits]
        
        - Require ``New:`` or ``Fixes:`` to be present in the changelog during
          prerelease.
          [maurits]
        
        - Simplified showing last changelog entries.  Requires zest.releaser
          6.0 or higher.
          [maurits]
        
        - Set new changelog format during postrelease.  Adapt check in
          prerelease that warns when the original changelog text has not been
          changed since the previous release.
          Issue https://github.com/plone/Products.CMFPlone/issues/1180
          [maurits]
        
        Fixes:
        
        - Temporarily require simplejson. This is needed because launchpadlib
          requires lazr.restfulclient which needs a new release.  See
          https://bugs.launchpad.net/lazr.restfulclient/+bug/1500460  [maurits]
        
        
        1.3 (2015-09-27)
        ----------------
        
        - Fail nicely if a Plone versions.cfg can't be located
          [esteele]
        
        - When showing the changelog, accept 1.7.2.1 as version.  So loose
          version numbers instead of strict version numbers with only one or
          two dots.
          [maurits]
        
        - Run git pull on buildout.coredev to make sure it is up-to-date.
          [timo]
        
        - Refactor checkPackageForUpdates to be more flexible. Made it a class
          on its own module.
          [gforcada]
        
        - Create a jenkins report based on checkPackageForUpdates.
          [gforcada]
        
        
        1.2 (2015-03-21)
        ----------------
        
        - Rename esteele.manager to plone.releaser.
          [timo]
        
        
        1.1 (2014-04-23)
        ----------------
        
        - add feature: add the package to the version file if it doesn't exists
          [jfroche]
        
        - add command to set the package version in a versions config file
          [jfroche]
        
        - return the new version number when appending jenkins build number to the versions of a package
          [jfroche]
        
        
        1.0 (2014-04-23)
        ----------------
        
        - Initial release
          [esteele]
        
Keywords: plone release
Platform: UNKNOWN
Classifier: Framework :: Plone
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
