Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mariofix committed Jul 22, 2023
1 parent 60b14f3 commit e9f59e7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Futuros Cambios]

## [1.1.5] - 2023-07-21
## [1.2.0] - 2023-07-21

### Cambiado

- Mejoras Documentación
- CLI app flow-cl

## [1.1.4] - 2023-07-04

Expand Down
2 changes: 1 addition & 1 deletion pyflowcl/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.5"
__version__ = "1.2.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyflowcl"
version = "1.1.5"
version = "1.2.0"
description = "Cliente para comunicacion con flowAPI-3 de flow.cl"
authors = [
"Mario Hernandez <yo@mariofix.com>"
Expand Down
7 changes: 4 additions & 3 deletions tests/test_pyflow_openapi3.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@


def test_version():
assert __version__ == "1.1.5"
assert __version__ == "1.2.0"


def test_FlowAPI_min_config():
api = FlowAPI(api_key="api-key", secret_key="secret-key")
api = FlowAPI(api_key="api-key", api_secret="secret-key")

assert api.api_key == "api-key"
assert api.secret_key == "secret-key"
assert api.api_secret == "secret-key"
assert api.endpoint == "live"


# def test_FlowAPI_min_config_error():
Expand Down

0 comments on commit e9f59e7

Please sign in to comment.