Skip to content

Commit

Permalink
Version 3.0.0 (#82)
Browse files Browse the repository at this point in the history
* Fix json validator path

* Version 3.0.0 and changelog

* Include new schemas path
  • Loading branch information
dmosorast authored May 17, 2022
1 parent ca3e61d commit a4a076d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: 'JSON Validator'
command: |
source /usr/local/share/virtualenvs/tap-tester/bin/activate
stitch-validate-json tap_mambu/schemas/*.json
stitch-validate-json tap_mambu/helpers/schemas/*.json
- run:
when: always
name: 'Unit Tests'
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 3.0.0
* Major schema refactoring, V2 API upgrade [#77](https://github.com/singer-io/tap-mambu/pull/77)
* Finishes structural refactoring of the tap to generator-processor pattern
* Upgrades all streams with a comparable endpoint to V2 API
* Updates all schemas to match current documentation
* Adds schema extraction script to repo for generating schemas from Swagger specs

## 2.5.2
* Hotfix for audit_trail bookmarking issue [#79](https://github.com/singer-io/tap-mambu/pull/79)

Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include LICENSE
include tap_mambu/schemas/*.json
include tap_mambu/helpers/schemas/*.json
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup, find_packages

setup(name='tap-mambu',
version='2.5.2',
version='3.0.0',
description='Singer.io tap for extracting data from the Mambu 2.0 API',
author='[email protected]',
classifiers=['Programming Language :: Python :: 3 :: Only'],
Expand Down Expand Up @@ -33,6 +33,6 @@
packages=find_packages(),
package_data={
'tap_mambu': [
'schemas/*.json'
'helpers/schemas/*.json'
]
})

0 comments on commit a4a076d

Please sign in to comment.