Compare commits

..

No commits in common. "d4e542d4ebe0f4d8f694505ed6d455428cb488d5" and "63fe8c9b8095a3d9ce3acec841d9dbc1248114de" have entirely different histories.

3 changed files with 3 additions and 5 deletions

View file

@ -10,7 +10,7 @@ class ZoneMeta:
self._session = _session
self._load(**kwargs)
def _load(self, id, id_author, default_ttl, last_modified="", commit_message=None, commit_date=None, published=None, parent=None):
def _load(self, id, id_author, default_ttl, last_modified="", commit_message=None, commit_date=None, published=None):
self.id = id
self.id_author = id_author
self.default_ttl = default_ttl
@ -18,7 +18,6 @@ class ZoneMeta:
self.commit_message = commit_message
self.commit_date = commit_date
self.published = published
self.parent = parent
def _dumps(self):
return json.dumps({
@ -29,7 +28,6 @@ class ZoneMeta:
"commit_message": self.commit_message,
"commit_date": self.commit_date,
"published": self.published,
"parent": self.parent,
})

View file

@ -1,6 +1,6 @@
[project]
name = "happydomain"
version = "0.4.0"
version = "0.3.0"
authors = [
{ name="happyDomain's team", email="contact+pypi@happydomain.org" },
]

View file

@ -8,7 +8,7 @@ try:
except ImportError:
from distutils.core import setup
version = "0.4.0"
version = "0.3.0"
setup(
name = "happydomain",