Skip to content

Commit

Permalink
1.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
semio committed Aug 7, 2024
1 parent 60553d9 commit 6b571e3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## version 1.0.15 2024-08-07
- all resources' primaryKey properity will be an array in datapackage.json now
- update the code to make it work with newer version of pandas

## version 1.0.14 2021-08-24

- improved and fixed bug in the curl download function
Expand Down
2 changes: 1 addition & 1 deletion ddf_utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

__version__ = '1.0.15dev'
__version__ = '1.0.15'

from . import (str, cli, i18n, io, patch, qa, transformer, factory)
from ddf_utils.model.package import DataPackage
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from setuptools import find_packages, setup

version = "1.0.15dev"
version = "1.0.15"

if sys.argv[-1] == 'tag':
os.system("git tag -a %s -m 'version %s'" % (version, version))
Expand Down

0 comments on commit 6b571e3

Please sign in to comment.