Skip to content

Commit

Permalink
Merge pull request #68 from mrterry/version
Browse files Browse the repository at this point in the history
Prep for release.
  • Loading branch information
mikhail authored Feb 23, 2017
2 parents f73c18e + a758647 commit e1a3ad2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions nd_service_registry/registration_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ def test_greedy_ownership_of_data(self):
self.zk.set(path, value=b'bogus')
waituntil(eph1._watcher.get, current_stat, 5)
(data, stat) = self.zk.get(path)
self.assertTrue(b'"unittest":"data"' in data)
self.assertFalse(b'bogus' in data)
self.assertIn(b'"unittest":"data"', data)
self.assertNotIn(b'bogus', data)

# Now lets intentionally delete the node and see it get re-run
current_stat = eph1.get()
Expand Down
2 changes: 1 addition & 1 deletion nd_service_registry/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '1.0.0' # http://semver.org/
__version__ = '1.1.0' # http://semver.org/
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,8 @@ def run(self):
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: POSIX',
'Natural Language :: English',
],
Expand Down

0 comments on commit e1a3ad2

Please sign in to comment.