Skip to content

Commit

Permalink
Bump version to 1.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Mach committed Jun 2, 2016
1 parent a3d326e commit a1fc06e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion productmd/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import six


VERSION = (1, 1)
VERSION = (1, 2)


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

setup(
name = "productmd",
version = "1.1",
version = "1.2",
description = "Product, compose and installation media metadata library",
url = "https://github.com/release-engineering/productmd",
author = "Daniel Mach",
Expand Down
2 changes: 1 addition & 1 deletion tests/images/src_move_after.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"header": {
"type": "productmd.images",
"version": "1.1"
"version": "1.2"
},
"payload": {
"compose": {
Expand Down
2 changes: 1 addition & 1 deletion tests/test_header.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def test_serialize(self):
expected_data = {
"header": {
"type": "productmd.header",
"version": "1.1",
"version": "1.2",
}
}
self.assertEqual(serialized_data, expected_data)
Expand Down

0 comments on commit a1fc06e

Please sign in to comment.