Skip to content

Commit

Permalink
version bump to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
klinga committed Sep 23, 2021
1 parent 3b7d4ec commit 4fda803
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,6 @@ Python 3.8 and up.

### 0.2.0 (08/30/2021)
+ added a method for retrieving branch call number as `pymarc.Field`

### 0.3.0 (09/23/2021)
+ added following methods: `lccn` (retrieves LCCN from bib), `overdrive_number` (retrieves Overdrive Reserve ID), and `upc_number` (retrieves UPC from bib)
2 changes: 1 addition & 1 deletion bookops_marc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.0"
__version__ = "0.3.0"

from .bib import Bib
from .reader import SierraBibReader
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bookops-marc"
version = "0.2.0"
version = "0.3.0"
license = "MIT"
description = "A sweetened `pymarc.Record` module for extraction of data from local Sierra records."
authors = ["Tomek <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_bookops_marc.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


def test_version():
assert __version__ == "0.1.0"
assert __version__ == "0.3.0"


def test_Bib_top_import():
Expand Down

0 comments on commit 4fda803

Please sign in to comment.