Skip to content

Commit

Permalink
release 1.5.2
Browse files Browse the repository at this point in the history
* improved compatibility with busybox
* fixed LOGIN privs on postgres_roles
  • Loading branch information
trehn committed Jul 19, 2015
1 parent 5518a48 commit 2268ff2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
1.5.2
=====

2015-07-19

* improved compatibility with busybox
* fixed LOGIN privs on postgres_roles


1.5.1
=====

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="bundlewrap",
version="1.5.1",
version="1.5.2",
description="Config management with Python",
long_description=(
"By allowing for easy and low-overhead config management, BundleWrap fills the gap between complex deployments using Chef or Puppet and old school system administration over SSH.\n"
Expand Down
2 changes: 1 addition & 1 deletion src/bundlewrap/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

VERSION = (1, 5, 1)
VERSION = (1, 5, 2)
VERSION_STRING = ".".join([str(v) for v in VERSION])

0 comments on commit 2268ff2

Please sign in to comment.