Skip to content

Commit fc4bcd5

Browse files
author
Greg
committed
prepping for 0.3 release
1 parent 6297e57 commit fc4bcd5

File tree

3 files changed

+26
-8
lines changed

3 files changed

+26
-8
lines changed

CHANGES.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
0.3.0
2+
=====
3+
- theme_bw, theme_gray
4+
- facet bugfixes
5+
- improved python3 support
6+
- string keys in size legend
7+
- legend improvements:
8+
- hide legend borders
9+
- don't use colons in their labels
10+
- var names in legends
11+
112
0.2.9
213
=====
314
- scale_x_reverse and scale_y_reverse - @ocefpaf

README.rst

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ read more on our
1010

1111
ggplot(aes(x='date', y='beef'), data=meat) + \
1212
geom_point(color='lightblue') + \
13-
geom_line(alpha=0.25) + \
14-
stat_smooth(span=.05, color='black') + \
13+
stat_smooth(span=.15, color='black', se=True) + \
1514
ggtitle("Beef: It's What's for Dinner") + \
1615
xlab("Date") + \
1716
ylab("Head of Cattle Slaughtered")
@@ -66,14 +65,19 @@ Ok the hard part is over. Installing ``ggplot`` is really easy. Just use
6665
``pip``! An item on the TODO is to add the matplotlibrc files to the pip
6766
installable (let me know if you'd like to help!).
6867

68+
*``matplotlibrc`` will be replaced with themes in the 0.3 release*
69+
6970
::
7071

7172
# matplotlibrc from Huy Nguyen (http://www.huyng.com/posts/sane-color-scheme-for-matplotlib/)
72-
$ curl https://github.com/yhat/ggplot/raw/master/matplotlibrc.zip > matplotlibrc.zip
73-
$ unzip matplotlibrc.zip -d ~/
73+
$ curl -O https://raw.github.com/yhat/ggplot/master/matplotlibrcs/matplotlibrc-osx.zip
74+
$ unzip matplotlibrc-osx.zip -d ~/
7475
# install ggplot using pip
7576
$ pip install ggplot
7677

78+
NOTE: You might want to install matplotlibrc files for other platforms
79+
(e.g., Windows). See ``matplotlibrcs``.
80+
7781
Loading ``ggplot``
7882
^^^^^^^^^^^^^^^^^^
7983

@@ -106,7 +110,7 @@ Examples
106110
ylim(0, 20000)
107111

108112
``geom_histogram``
109-
^^^^^^^^^^^^^
113+
^^^^^^^^^^^^^^^^^^
110114

111115
::
112116

@@ -138,5 +142,8 @@ Examples
138142
TODO
139143
~~~~
140144

141-
The list is long, but
142-
distinguished.\ `TODO <https://github.com/yhat/ggplot/blob/master/TODO.md>`__
145+
`The list is long, but
146+
distinguished. <https://github.com/yhat/ggplot/blob/master/TODO.md>`__
147+
We're looking for contributors! Email greg at yhathq.com for more info.
148+
For getting started with contributing, check out `these
149+
docs <https://github.com/yhat/ggplot/blob/master/docs/contributing.md>`__

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def get_package_data():
2222

2323
setup(
2424
name="ggplot",
25-
version="0.2.8",
25+
version="0.3.0",
2626
author="Greg Lamp",
2727
author_email="[email protected]",
2828
url="https://github.com/yhat/ggplot/",

0 commit comments

Comments
 (0)