Skip to content

Commit

Permalink
prepare 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rnixx committed Jul 9, 2020
1 parent b92e2cb commit 5fc0746
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 14 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"

install:
- pip install zope.interface
Expand Down
5 changes: 2 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@

History
Changes
=======

1.3 (unreleased)
1.3 (2020-07-09)
----------------

- Access ``attrs`` when initializing nodes with ``ZODBAttributes`` behavior
Expand Down
3 changes: 1 addition & 2 deletions LICENSE.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@

License
=======

Copyright (c) 2012-2017, BlueDynamics Alliance, Austria, Germany, Switzerland
Copyright (c) 2012-2020, BlueDynamics Alliance, Austria, Germany, Switzerland
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
graft src
graft docs
include *.rst
recursive-include src *
recursive-exclude src *.pyc *.pyo
15 changes: 14 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
.. image:: https://img.shields.io/pypi/v/node.ext.zodb.svg
:target: https://pypi.python.org/pypi/node.ext.zodb
:alt: Latest PyPI version

.. image:: https://img.shields.io/pypi/dm/node.ext.zodb.svg
:target: https://pypi.python.org/pypi/node.ext.zodb
:alt: Number of PyPI downloads

.. image:: https://travis-ci.org/bluedynamics/node.ext.zodb.svg?branch=master
:target: https://travis-ci.org/bluedynamics/node.ext.zodb

.. image:: https://coveralls.io/repos/github/bluedynamics/node.ext.zodb/badge.svg?branch=master
:target: https://coveralls.io/github/bluedynamics/node.ext.zodb?branch=master

``node.ext.zodb`` is a persistent node implementation for the ZODB.

For more information about ``node`` see https://pypi.python.org/pypi/node
Expand Down Expand Up @@ -26,5 +40,4 @@ Contributors
============

- Robert Niederreiter

- Jens Klein
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read_file(name):
return f.read()


version = '1.3.dev0'
version = '1.3'
shortdesc = 'Node Implementation with ZODB persistence'
longdesc = '\n\n'.join([read_file(name) for name in [
'README.rst',
Expand Down
10 changes: 5 additions & 5 deletions src/node/ext/zodb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
from node.ext.zodb.behaviors import OOBTodictStorage
from node.ext.zodb.behaviors import PodictStorage
from node.ext.zodb.behaviors import ZODBAttributes
from node.ext.zodb.behaviors import ZODBBehavior
from node.ext.zodb.interfaces import IZODBNode
from node.ext.zodb.utils import OOBTodict
from node.ext.zodb.utils import Podict
from node.ext.zodb.utils import volatile_property
from node.ext.zodb.behaviors import ZODBBehavior # noqa
from node.ext.zodb.interfaces import IZODBNode # noqa
from node.ext.zodb.utils import OOBTodict # noqa
from node.ext.zodb.utils import Podict # noqa
from node.ext.zodb.utils import volatile_property # noqa
from persistent import Persistent
from plumber import plumbing

Expand Down

0 comments on commit 5fc0746

Please sign in to comment.