Skip to content

Commit

Permalink
MAINT: bump version to 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jakevdp committed Nov 27, 2019
1 parent c6a3712 commit 46d87ca
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Altair Change Log

## Version 3.3.0 (unreleased)
## Version 3.3.0 (released Nov 27, 2019)

Last release to support Python 2

### Enhancements

Expand Down
2 changes: 1 addition & 1 deletion altair/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# flake8: noqa
__version__ = '3.3.0dev0'
__version__ = '3.3.0'

from .vegalite import *
from . import examples
Expand Down
2 changes: 1 addition & 1 deletion altair/vegalite/v3/display.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from .schema import SCHEMA_VERSION
VEGALITE_VERSION = SCHEMA_VERSION.lstrip('v')
VEGA_VERSION = '5'
VEGAEMBED_VERSION = '4'
VEGAEMBED_VERSION = '5'


# ==============================================================================
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
# built documents.
#
# The short X.Y version.
version = '3.3.0dev0'
version = '3.3.0'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down Expand Up @@ -319,4 +319,4 @@ def setup(app):
altairplot_links = {'editor': True, 'source': True, 'export': True}
altairplot_vega_js_url = "https://cdn.jsdelivr.net/npm/[email protected]"
altairplot_vegalite_js_url = "https://cdn.jsdelivr.net/npm/[email protected]"
altairplot_vegaembed_js_url = "https://cdn.jsdelivr.net/npm/vega-embed@4.2"
altairplot_vegaembed_js_url = "https://cdn.jsdelivr.net/npm/vega-embed@5.1"

0 comments on commit 46d87ca

Please sign in to comment.