Skip to content

Commit

Permalink
Merge pull request #60 from astropenguin/#59-release-v0.3.1
Browse files Browse the repository at this point in the history
Release v0.3.1
  • Loading branch information
astropenguin authored Oct 29, 2021
2 parents 582c44a + a2b9108 commit 015d6fa
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ jobs:
name: GitHub Pages
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
POETRY_VIRTUALENVS_CREATE: false
steps:
- uses: actions/checkout@v2
Expand All @@ -27,7 +26,7 @@ jobs:
- name: Deploy docs
uses: peaceiris/actions-gh-pages@v3
with:
github_token: $GITHUB_TOKEN
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build
publish_branch: gh-pages
force_orphan: true
2 changes: 1 addition & 1 deletion astro_ph/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# flake8: noqa
# type: ignore
__author__ = "Akio Taniguchi"
__version__ = "0.3.0"
__version__ = "0.3.1"


# submodules
Expand Down
2 changes: 1 addition & 1 deletion docs/build
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pandoc --column 500 -f markdown -t rst -o docs/readme.rst README.md


# auto-generate package guide
sphinx-apidoc -efT -o docs/_apidoc astro_ph astro_ph/cli.py
sphinx-apidoc -efT -o docs/_apidoc astro_ph


# build website
Expand Down
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 = "astro-ph"
version = "0.3.0"
version = "0.3.1"
description = "Translate and post arXiv articles to various apps"
authors = ["Akio Taniguchi <[email protected]>"]
keywords = ["arxiv", "astro-ph", "translation"]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# constants
AUTHOR = "Akio Taniguchi"
VERSION = "0.3.0"
VERSION = "0.3.1"


# test functions
Expand Down

0 comments on commit 015d6fa

Please sign in to comment.