Skip to content

Commit

Permalink
changlog and smarter versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelene committed Nov 8, 2019
1 parent 1c29517 commit 19022c2
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 1 deletion.
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
## eneel 0.1.2 (November 8, 2019)

### Overview

Introduce new functionallity in queries and changes to the export technology.

### Breaking changes
- source_columntypes_to_exclude is replaced with internal removing of unsupported columntypes.

### Features:
- Load queries
- Better interpretation of data types between databases
- Added tests
- Database logging of load progress
- Parallel processing of table loads

### Fixes:
- Feedback when project.yml not found
- Better feedback when first run incremental

### Changed:
- Using database adapter query for exports from postgres and oracle. Keeping bcp for sql server due to performance

## eneel 0.1.1 (September 28, 2019)

### Overview

Fix release

### Fixes:
- Performance with Oracle exports
- Better logging
- Fixed issue with load order numbering


## eneel 0.1.0 (September 25, 2019)

### Overview

Initial release.
ed issue with load order numbering
1 change: 1 addition & 0 deletions eneel/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '0.1.2'
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
#!/usr/scripts/env python
from setuptools import find_packages
from distutils.core import setup
from eneel import __version__

import os
eneel_path = os.path.join(os.path.expanduser('~'), '.eneel')

package_name = "eneel"
package_version = "0.1.2"
package_version = __version__
description = """A package for fast loading av relational data"""

setup(
Expand Down

0 comments on commit 19022c2

Please sign in to comment.