Skip to content

Commit

Permalink
Merge pull request #347 from CartoDB/v0.5.0b9_release
Browse files Browse the repository at this point in the history
V0.5.0b9 release
  • Loading branch information
andy-esch authored Dec 15, 2017
2 parents 088d019 + 4876d8f commit b24295e
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 1 deletion.
33 changes: 33 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Contributing to CARTOframes

## Feature request

If you'd like to request a feature, first check <https://github.com/cartodb/cartoframes/issues> to see if your request already exists. If it exists, comment on that issie. If it does not, open a new issue clearly defining the need and use case.

## Reporting bugs

If the but is not already reported, open a new issue. Please give the following information:

* Code snippet that produced the error
* Relevant error messages
* cartoframes version (find it with `print(cartoframes.__version__)`)
* Python version (e.g., 3.5, 2.7, etc.)
* Operation system (Windows, Linux, etc.)

## Pull requests

### External contributors

CARTOframes has automated testing against a working CARTO account, and the authentication information is not public. Because of this, external pull requests currently cannot successfully run the full suite of tests.

To run tests, rename the file `secret.json.sample` to `secret.json` and fill in the credentials for a CARTO account to which you have access. NOTE: the tests require access to different CARTO services like the Data Observatory, so the tests consume quota.

To open a pull request:

1. Open against the `develop` branch, which we will keep up-to-date with `master`
2. Tag @andy-esch for review
3. Once the PR has been approved, we'll merge it into `develop`, and then open a fresh pull request against `master` for running the continuous integration. Once tests are successful, we will tag the original contributor there and give final notice before merging in.

### Internal contributors

Open a new pull request against the `master` branch and tag @andy-esch.
16 changes: 16 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Changelog
=========

0.5.0b9
-------

Released 2017-12-14

Updates

- Adds `CartoContext.data_boundaries`
- `CartoContext.data_discovery` returns non-denominated data
- Expands `CartoContext.data` to do measure lookups based on `geom_refs`
- Expands styling methods to take pre-defined bins
- Adds a compression option for write operations
- Fixes file system path creation to be generic to OS
2 changes: 1 addition & 1 deletion cartoframes/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.4.2b8'
__version__ = '0.5.0b9'

0 comments on commit b24295e

Please sign in to comment.