Skip to content

Commit

Permalink
rfix path for setup.py in pypi bublishing ci
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago committed Aug 17, 2021
1 parent 2168c92 commit 2c7a7f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- name: Set module version
id: module
# https://stackoverflow.com/questions/58177786/get-the-current-pushed-tag-in-github-actions
run: echo ::set-output name=version::$(python titiler/core/setup.py --version)
run: echo ::set-output name=version::$(python setup.py --version)

- name: Build and publish
if: steps.tag.outputs.tag == steps.module.outputs.version
Expand Down
7 changes: 3 additions & 4 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Release Notes

## 0.3.5 (TBD)
## 0.3.5 (2021-08-17)

### titiler.mosaic

* add `/{z}/{x}/{y}/assets`, `/{lon},{lat}/assets`, `/{minx},{miny},{maxx},{maxy}/assets` GET endpoints to return a list of assets that intersect a given geometry (author @mackdelany, https://github.com/developmentseed/titiler/pull/351)

## 0.3.4 (2021-08-02)
## 0.3.4 (2021-08-02) - **Not published on PyPi** [#355](https://github.com/developmentseed/titiler/discussions/355)

### titiler.core

Expand All @@ -17,7 +17,7 @@

* add optional `root_path` setting to specify a url path prefix to use when running the app behind a reverse proxy (https://github.com/developmentseed/titiler/pull/343)

## 0.3.3 (2021-06-29)
## 0.3.3 (2021-06-29) - **Not published on PyPi** [#355](https://github.com/developmentseed/titiler/discussions/355)

### titiler.core

Expand All @@ -31,7 +31,6 @@

* add `titiler.application.middleware.LowerCaseQueryStringMiddleware` to cast all query string parameter to lowercase (author @lorenzori, https://github.com/developmentseed/titiler/pull/321)


### code and repo

* move `titiler` code to `src/titiler`
Expand Down

0 comments on commit 2c7a7f0

Please sign in to comment.