Skip to content

Commit 7652ac6

Browse files
authored
Add anchor links to versions in the changelog (#191)
Uses [Sphinx syntax for cross-reference labels](https://stackoverflow.com/a/19543591/101923).
1 parent 06ff699 commit 7652ac6

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

docs/source/changelog.rst

+22
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Changelog
22
=========
33

4+
.. _changelog-0.5.0:
5+
46
0.5.0 / 2018-06-15
57
------------------
68

@@ -27,12 +29,16 @@ Internal changes
2729
- Refactored auth to an internal auth module. (:issue:`176`)
2830
- Add unit tests for ``get_credentials()``. (:issue:`184`)
2931

32+
.. _changelog-0.4.1:
33+
3034
0.4.1 / 2018-04-05
3135
------------------
3236

3337
- Only show ``verbose`` deprecation warning if Pandas version does not
3438
populate it. (:issue:`157`)
3539

40+
.. _changelog-0.4.0:
41+
3642
0.4.0 / 2018-04-03
3743
------------------
3844

@@ -50,6 +56,8 @@ Internal changes
5056
Messages use the logging module instead of printing progress directly to
5157
standard output. (:issue:`12`)
5258

59+
.. _changelog-0.3.1:
60+
5361
0.3.1 / 2018-02-13
5462
------------------
5563

@@ -58,20 +66,26 @@ Internal changes
5866
- Fix an issue where a dataframe containing both integer and floating point columns could not be uploaded with ``to_gbq`` (:issue:`116`)
5967
- ``to_gbq`` now uses ``to_csv`` to avoid manually looping over rows in a dataframe (should result in faster table uploads) (:issue:`96`)
6068

69+
.. _changelog-0.3.0:
70+
6171
0.3.0 / 2018-01-03
6272
------------------
6373

6474
- Use the `google-cloud-bigquery <https://googlecloudplatform.github.io/google-cloud-python/latest/bigquery/usage.html>`__ library for API calls. The ``google-cloud-bigquery`` package is a new dependency, and dependencies on ``google-api-python-client`` and ``httplib2`` are removed. See the `installation guide <https://pandas-gbq.readthedocs.io/en/latest/install.html#dependencies>`__ for more details. (:issue:`93`)
6575
- Structs and arrays are now named properly (:issue:`23`) and BigQuery functions like ``array_agg`` no longer run into errors during type conversion (:issue:`22`).
6676
- :func:`to_gbq` now uses a load job instead of the streaming API. Remove ``StreamingInsertError`` class, as it is no longer used by :func:`to_gbq`. (:issue:`7`, :issue:`75`)
6777

78+
.. _changelog-0.2.1:
79+
6880
0.2.1 / 2017-11-27
6981
------------------
7082

7183
- :func:`read_gbq` now raises ``QueryTimeout`` if the request exceeds the ``query.timeoutMs`` value specified in the BigQuery configuration. (:issue:`76`)
7284
- Environment variable ``PANDAS_GBQ_CREDENTIALS_FILE`` can now be used to override the default location where the BigQuery user account credentials are stored. (:issue:`86`)
7385
- BigQuery user account credentials are now stored in an application-specific hidden user folder on the operating system. (:issue:`41`)
7486

87+
.. _changelog-0.2.0:
88+
7589
0.2.0 / 2017-07-24
7690
------------------
7791

@@ -81,21 +95,29 @@ Internal changes
8195
- :func:`read_gbq` now has a ``auth_local_webserver`` boolean argument for controlling whether to use web server or console flow when getting user credentials. Replaces `--noauth_local_webserver` command line argument. (:issue:`35`)
8296
- :func:`read_gbq` now displays the BigQuery Job ID and standard price in verbose output. (:issue:`70` and :issue:`71`)
8397

98+
.. _changelog-0.1.6:
99+
84100
0.1.6 / 2017-05-03
85101
------------------
86102

87103
- All gbq errors will simply be subclasses of ``ValueError`` and no longer inherit from the deprecated ``PandasError``.
88104

105+
.. _changelog-0.1.4:
106+
89107
0.1.4 / 2017-03-17
90108
------------------
91109

92110
- ``InvalidIndexColumn`` will be raised instead of ``InvalidColumnOrder`` in :func:`read_gbq` when the index column specified does not exist in the BigQuery schema. (:issue:`6`)
93111

112+
.. _changelog-0.1.3:
113+
94114
0.1.3 / 2017-03-04
95115
------------------
96116

97117
- Bug with appending to a BigQuery table where fields have modes (NULLABLE,REQUIRED,REPEATED) specified. These modes were compared versus the remote schema and writing a table via :func:`to_gbq` would previously raise. (:issue:`13`)
98118

119+
.. _changelog-0.1.2:
120+
99121
0.1.2 / 2017-02-23
100122
------------------
101123

0 commit comments

Comments
 (0)