Skip to content

Commit

Permalink
Merge pull request #37 from ContinuumIO/release0.6
Browse files Browse the repository at this point in the history
release version 0.6.0

Ignoring py 3.5 failures for now. I believe it is the conda package that is the problem and should be fixed eventually.
  • Loading branch information
AlbertDeFusco authored Jun 7, 2021
2 parents 223540a + cc81549 commit 9b4a738
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.6.0] - 2021-06-07
### Added
- CORS support using `--allow-origin HOST:PORT` or `$TRANQUILIZER_ALLOW_ORIGIN`

### Fixed
- Example in README

## [0.5.0] - 2020-07-20
### Changed
- Migrated from flask-restplus to flask-restx
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ In [1]: import requests

In [2]: response = requests.get('http://localhost:8086/order', params={'cheese':'Red Leicester'})

In [3]: response.json()
Out[3]: {'response': "I'm afraid we're fresh out of Red Leicester, Sir."}
In [3]: response.text
Out[3]: '"I\'m afraid we\'re fresh out of cheddar, Sir."\n'
```

The *tranquilized* API is documented with [Swagger](https://swagger.io/tools/open-source/) and is accessible
Expand Down

0 comments on commit 9b4a738

Please sign in to comment.