Skip to content

Commit

Permalink
Merge pull request #1636 from CartoDB/release/1.0.3
Browse files Browse the repository at this point in the history
Release/1.0.3
  • Loading branch information
Jesus89 committed May 14, 2020
2 parents 5eb757d + 41085bb commit ba7c414
Show file tree
Hide file tree
Showing 128 changed files with 28,011 additions and 5,089 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ htmlcov
test_*.json
.pytest_cache
tmp_file.csv
fake_path

# Sphinx documentation
docs/build/
Expand Down
1 change: 1 addition & 0 deletions .jshintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cartoframes/assets/src/bundle.js
3 changes: 2 additions & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"esversion": 6
"esversion": 6,
"laxbreak" : true
}
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,29 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.3] - 2020-05-12

### Added
- Add SQL query param to DO download (#1604, #1618, #1621, #1620)
- Add public filter to catalog (#1623)
- Add providers property to catalog (#1625)
- Add format attribute to map elements (#1626)
- Add download dataset example (#1634)

### Changed
- Require pandas >= 0.25 (#1622)
- Remove enrichment max number of variables restriction from reference (#1624)
- Make Layout interactive by default (#1630)
- UI elements removed in static layout (#1631)
- Improve replace table strategy (#1628, #1633)
- Improve installation guide (#1635)
- Allow multi-selection in category widget

### Fixed
- Scape quotes in SQL function calls (#1619)
- Fix viz palettes (#1627)
- Fix metadata entity request (#1629)

## [1.0.2] - 2020-04-06

### Added
Expand Down
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ CARTOframes

.. image:: https://travis-ci.org/CartoDB/cartoframes.svg?branch=develop
:target: https://travis-ci.org/CartoDB/cartoframes
.. image:: https://img.shields.io/badge/pypi-v1.0.2-orange
:target: https://pypi.org/project/cartoframes/1.0.2
.. image:: https://img.shields.io/badge/pypi-v1.0.3-orange
:target: https://pypi.org/project/cartoframes/1.0.3

A Python package for integrating `CARTO <https://carto.com/>`__ maps, analysis, and data services into data science workflows.

Expand All @@ -14,11 +14,11 @@ Python data analysis workflows often rely on the de facto standards `pandas <htt
Try it Out
==========

* Stable (1.0.2): |stable|
* Stable (1.0.3): |stable|
* Latest (develop branch): |develop|

.. |stable| image:: https://mybinder.org/badge_logo.svg
:target: https://mybinder.org/v2/gh/cartodb/cartoframes/v1.0.2?filepath=examples
:target: https://mybinder.org/v2/gh/cartodb/cartoframes/v1.0.3?filepath=examples

.. |develop| image:: https://mybinder.org/badge_logo.svg
:target: https://mybinder.org/v2/gh/cartodb/cartoframes/develop?filepath=examples
Expand Down
2 changes: 1 addition & 1 deletion binder/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cartoframes==1.0.2
cartoframes==1.0.3
# Additional dependencies from examples
matplotlib
dask
Expand Down
4 changes: 2 additions & 2 deletions cartoframes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@


# Check installed packages versions
check_package('carto', '>=1.10.0')
check_package('pandas', '>=0.23.0')
check_package('carto', '>=1.11.1')
check_package('pandas', '>=0.25.0')
check_package('geopandas', '>=0.6.0')


Expand Down
2 changes: 1 addition & 1 deletion cartoframes/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.2'
__version__ = '1.0.3'
Loading

0 comments on commit ba7c414

Please sign in to comment.