Skip to content

Commit d703687

Browse files
committed
Release 0.3.1
1 parent 915e647 commit d703687

File tree

5 files changed

+19
-8
lines changed

5 files changed

+19
-8
lines changed

AUTHORS.rst

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ Development Lead
88

99
Contributions
1010
``````````````
11-
- Bertrand Bordage <bordage.bertrand@gmail.com>
12-
- Yuval Langer <http://yuvallanger.github.io>
13-
- Guillaume Thomas <guillaume.thomas642@gmail.com>
14-
- Victor Novais <victorh.novaisr@gmail.com>
15-
- Parbhat Puri <https://parbhatpuri.com/>
16-
- Fredrik Burman (coachHIPPO) <https://www.coachhippo.com>
11+
- `Christopher Clarke <https://github.com/chrisdev>`_
12+
- `Bertrand Bordage <https://github.com/BertrandBordage>`_
13+
- `Guillaume Thomas <https://github.com/gtnx>`_
14+
- `Parbhat Puri <https://parbhatpuri.com/>`_
15+
- `Fredrik Burman (coachHIPPO) <https://www.coachhippo.com>`_
16+
- `Safe Hammad <http://safehammad.com>`_
17+
- `Jeff Sternber <https://www.linkedin.com/in/jeffsternberg>`_
18+
- `@MiddleFork <https://github.com/MiddleFork>`_

CHANGES.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
CHANGES
22
========
3+
0.3.1 (2015-10-25)
4+
-------------------
5+
- Extends the ability to span a ForeignKey relationship with double underscores
6+
to OneToOneField too thanks to Safe Hammad
7+
- Provide better support for ManyToMany and OneToMany relations thanks to
8+
Jeff Sternberg and @MiddleFork
39

410
0.3.0 (2015-06-16)
511
---------------------

README.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ Contributors
1616
* `Guillaume Thomas <https://github.com/gtnx>`_
1717
* `Parbhat Puri <https://parbhatpuri.com/>`_
1818
* `Fredrik Burman (coachHIPPO) <https://www.coachhippo.com>`_
19+
* `Safe Hammad <http://safehammad.com>`_
20+
* `Jeff Sternber <https://www.linkedin.com/in/jeffsternberg>`_
21+
* `@MiddleFork <https://github.com/MiddleFork>`_
1922

2023
What's New
2124
===========

django_pandas/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.3.0'
1+
__version__ = '0.3.1'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
)
88
MAJOR = 0
99
MINOR = 3
10-
MICRO = 0
10+
MICRO = 1
1111

1212
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
1313

0 commit comments

Comments
 (0)