Skip to content

Commit

Permalink
Bump version: 0.1.5 → 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rujinlong committed Jul 14, 2023
1 parent 567c7ef commit 57a1b1f
Show file tree
Hide file tree
Showing 9 changed files with 309 additions and 237 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.4
current_version = 0.1.6
commit = True
tag = True

Expand Down
7 changes: 6 additions & 1 deletion .conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: "zotero2notion"
version: "0.1.4"
version: "0.1.6"

source:
path: "../"
Expand All @@ -17,6 +17,11 @@ requirements:
- poetry
run:
- python=3.10
- bibtexparser
- typer
- pandas
- notion-client
- pyzotero

about:
home: "https://github.com/2003100127/tmkit"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
images: ${{ matrix.image }}

- name: Build and push Docker image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
context: "."
file: ${{ matrix.dockerfile }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ jobs:
python-version: ["3.9"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2.2.2
uses: actions/setup-python@v4.7.0
with:
python-version: ${{ matrix.python-version }}

- name: Install poetry
run: make poetry-download

- name: Set up cache
uses: actions/cache@v2.1.6
uses: actions/cache@v3.3.1
with:
path: .venv
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ jobs:
runs-on: ubuntu-latest
steps:
# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: release-drafter/release-drafter@v5.15.0
- uses: release-drafter/release-drafter@v5.24.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim-buster
FROM python:3.11-slim-buster

ENV LANG=C.UTF-8 \
LC_ALL=C.UTF-8 \
Expand Down
489 changes: 277 additions & 212 deletions poetry.lock

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "zotero2notion"
version = "0.1.4"
version = "0.1.6"
description = "Import zotero library to notion database"
readme = "README.md"
authors = ["rujinlong <[email protected]>"]
Expand Down Expand Up @@ -35,31 +35,31 @@ classifiers = [ #! Update me
[tool.poetry.dependencies]
python = "^3.10"

typer = {extras = ["all"], version = "^0.4.0"}
rich = "^10.14.0"
click = "^8.1.4"
rich = "^13.4.2"
typer = {extras = ["all"], version = "^0.9.0"}
click = "^8.1.5"
bibtexparser = "^1.3.0"
pandas = "^2.0.3"
notion-client = "^2.0.0"
pyzotero = "^1.5.9"

[tool.poetry.dev-dependencies]
bandit = "^1.7.1"
black = {version = "^23.3", allow-prereleases = true, extras = ["jupyter"]}
black = {version = "^23.7", allow-prereleases = true, extras = ["jupyter"]}
darglint = "^1.8.1"
isort = {extras = ["colors"], version = "^5.10.1"}
mypy = "^0.910"
mypy = "^1.0"
mypy-extensions = "^0.4.3"
pre-commit = "^2.15.0"
pre-commit = "^3.3.3"
pydocstyle = "^6.1.1"
pylint = "^2.11.1"
pytest = "^6.2.5"
pyupgrade = "^2.29.1"
safety = "^1.10.3"
coverage = "^6.1.2"
pytest = "^7.4.0"
safety = "^2.3.4"
pyupgrade = "^3.9.0"
coverage = "^7.2.7"
coverage-badge = "^1.1.0"
pytest-html = "^3.1.1"
pytest-cov = "^3.0.0"
pytest-cov = "^4.1.0"

[tool.poetry.group.dev.dependencies]
bumpversion = "^0.6.0"
Expand Down
12 changes: 7 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@ anyio==3.7.1 ; python_version >= "3.10" and python_version < "4"
bibtexparser==1.4.0 ; python_version >= "3.10" and python_version < "4.0"
certifi==2023.5.7 ; python_version >= "3.10" and python_version < "4"
charset-normalizer==3.2.0 ; python_version >= "3.10" and python_version < "4.0"
click==8.1.4 ; python_version >= "3.10" and python_version < "4.0"
colorama==0.4.6 ; python_version >= "3.10" and python_version < "4.0"
commonmark==0.9.1 ; python_version >= "3.10" and python_version < "4.0"
click==8.1.5 ; python_version >= "3.10" and python_version < "4.0"
colorama==0.4.6 ; python_version >= "3.10" and python_version < "4.0" and platform_system == "Windows"
exceptiongroup==1.1.2 ; python_version >= "3.10" and python_version < "3.11"
feedparser==6.0.10 ; python_version >= "3.10" and python_version < "4.0"
h11==0.14.0 ; python_version >= "3.10" and python_version < "4"
httpcore==0.17.3 ; python_version >= "3.10" and python_version < "4"
httpx==0.24.1 ; python_version >= "3.10" and python_version < "4"
idna==3.4 ; python_version >= "3.10" and python_version < "4"
markdown-it-py==3.0.0 ; python_version >= "3.10" and python_version < "4.0"
mdurl==0.1.2 ; python_version >= "3.10" and python_version < "4.0"
notion-client==2.0.0 ; python_version >= "3.10" and python_version < "4"
numpy==1.25.1 ; python_version >= "3.10" and python_version < "4.0"
pandas==2.0.3 ; python_version >= "3.10" and python_version < "4.0"
Expand All @@ -20,11 +21,12 @@ python-dateutil==2.8.2 ; python_version >= "3.10" and python_version < "4.0"
pytz==2023.3 ; python_version >= "3.10" and python_version < "4.0"
pyzotero==1.5.9 ; python_version >= "3.10" and python_version < "4.0"
requests==2.31.0 ; python_version >= "3.10" and python_version < "4.0"
rich==10.16.2 ; python_version >= "3.10" and python_version < "4.0"
rich==13.4.2 ; python_version >= "3.10" and python_version < "4.0"
sgmllib3k==1.0.0 ; python_version >= "3.10" and python_version < "4.0"
shellingham==1.5.0.post1 ; python_version >= "3.10" and python_version < "4.0"
six==1.16.0 ; python_version >= "3.10" and python_version < "4.0"
sniffio==1.3.0 ; python_version >= "3.10" and python_version < "4"
typer[all]==0.4.2 ; python_version >= "3.10" and python_version < "4.0"
typer[all]==0.9.0 ; python_version >= "3.10" and python_version < "4.0"
typing-extensions==4.7.1 ; python_version >= "3.10" and python_version < "4.0"
tzdata==2023.3 ; python_version >= "3.10" and python_version < "4.0"
urllib3==2.0.3 ; python_version >= "3.10" and python_version < "4.0"

0 comments on commit 57a1b1f

Please sign in to comment.