Skip to content

Commit c59d9d9

Browse files
committed
version bump v3.2.34
Fix readme.rst file to enable pypi
1 parent 796e54d commit c59d9d9

File tree

3 files changed

+11
-21
lines changed

3 files changed

+11
-21
lines changed

Diff for: CHANGES.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@
1616

1717
## Current Version
1818

19-
- 3.2.33 (2022-11-11): Updates
19+
- 3.2.34 (2022-11-11): Update to readme file
2020

2121
## Past Versions
2222

23+
- 3.2.33 (2022-11-11): Updates
24+
-
2325
- 3.2.32 (2022-10-14): Fix Scotus regex variation
2426

2527
- 3.2.30 (2022-09-13): Add more reporters and varations

Diff for: README.rst

+7-19
Original file line numberDiff line numberDiff line change
@@ -87,35 +87,23 @@ All variables are imported from the package root as follows:
8787

8888
The available variables are:
8989

90-
- ``REPORTERS`` — This is the main database and contains a huge dict of
91-
reporters as described below.
90+
- ``REPORTERS`` — This is the main database and contains a huge dict of reporters as described below.
9291

93-
- ``LAWS`` — Our database of statutory abbreviations, mapping the statute
94-
abbreviations to their metadata. For example ``Ark. Reg`` is the abbreviation
95-
for the ``Arkansas Register``.
92+
- ``LAWS`` — Our database of statutory abbreviations, mapping the statute abbreviations to their metadata. For example ``Ark. Reg`` is the abbreviation for the ``Arkansas Register``.
9693

9794
- ``JOURNALS`` — Same idea as ``LAWS``, but for legal journal abbreviations.
9895

99-
- ``STATE_ABBREVIATIONS`` — Bluebook style abbreviations for each state. For
100-
example, ``Ala.`` for Alaska and ``Haw.`` for Hawaii.
96+
- ``STATE_ABBREVIATIONS`` — Bluebook style abbreviations for each state. For example, ``Ala.`` for Alaska and ``Haw.`` for Hawaii.
10197

102-
- ``CASE_NAME_ABBREVIATIONS`` — Bluebook style abbreviations for common words,
103-
mapping each abbreviation to a list of possible words. For example, ``Admin``
104-
maps to ``["Administrative", "Administration"]``.
98+
- ``CASE_NAME_ABBREVIATIONS`` — Bluebook style abbreviations for common words, mapping each abbreviation to a list of possible words. For example, ``Admin`` maps to ``["Administrative", "Administration"]``.
10599

106100
A few specialized reporter-related variables are:
107101

108-
- ``VARIATIONS_ONLY`` — This contains a dict mapping a canonical reporter
109-
abbreviation to a list of possible variations it could represent. For example,
110-
``A. 2d`` sometimes incorrectly lacks a space, and has a variation list of
111-
``["A.2d"]``. ``P.R.`` could be ``["Pen. & W.", "P.R.R.", "P."]``.
102+
- ``VARIATIONS_ONLY`` — This contains a dict mapping a canonical reporter abbreviation to a list of possible variations it could represent. For example, ``A. 2d`` sometimes incorrectly lacks a space, and has a variation list of ``["A.2d"]``. ``P.R.`` could be ``["Pen. & W.", "P.R.R.", "P."]``.
112103

113-
- ``EDITIONS`` — A simple dict to map the abbreviations for each reporter
114-
edition to the canonical reporter. For example, ``A.2d`` maps to ``A.``.
104+
- ``EDITIONS`` — A simple dict to map the abbreviations for each reporter edition to the canonical reporter. For example, ``A.2d`` maps to ``A.``.
115105

116-
- ``NAMES_TO_EDITIONS`` — A simple dict to map the name of a reporter back to
117-
its canonilcal abbreviations. For example, ``Atlantic Reporter`` maps to
118-
``['A.', 'A.2d']``.
106+
- ``NAMES_TO_EDITIONS`` — A simple dict to map the name of a reporter back to its canonilcal abbreviations. For example, ``Atlantic Reporter`` maps to ``['A.', 'A.2d']``.
119107

120108

121109
CSV

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from setuptools import find_packages, setup
55

6-
VERSION = "3.2.33"
6+
VERSION = "3.2.34"
77
AUTHOR = "Mike Lissner"
88
99
HERE = os.path.abspath(os.path.dirname(__file__))

0 commit comments

Comments
 (0)