Skip to content

Commit

Permalink
#107 Merge pull request from astropenguin/astropenguin/issue106
Browse files Browse the repository at this point in the history
Release v0.7.0
  • Loading branch information
astropenguin committed May 7, 2023
2 parents 658b214 + c13649e commit d11fee5
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 19 deletions.
9 changes: 0 additions & 9 deletions .zenodo.json

This file was deleted.

15 changes: 15 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
cff-version: 1.2.0
message: "If you use this software, please cite it as below."

title: "arxiv-post"
abstract: "Translate and post arXiv articles to Slack and various apps"
version: 0.7.0
date-released: 2023-05-08
license: "MIT"
doi: "10.5281/zenodo.5633924"
url: "https://github.com/astropenguin/arxiv-post"
authors:
- given-names: "Akio"
family-names: "Taniguchi"
affiliation: "Nagoya University"
orcid: "https://orcid.org/0000-0002-9695-6183"
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 Akio Taniguchi
Copyright (c) 2020-2023 Akio Taniguchi

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
[![Release](https://img.shields.io/pypi/v/arxiv-post?label=Release&color=cornflowerblue&style=flat-square)](https://pypi.org/project/arxiv-post/)
[![Python](https://img.shields.io/pypi/pyversions/arxiv-post?label=Python&color=cornflowerblue&style=flat-square)](https://pypi.org/project/arxiv-post/)
[![Downloads](https://img.shields.io/pypi/dm/arxiv-post?label=Downloads&color=cornflowerblue&style=flat-square)](https://pepy.tech/project/arxiv-post)
[![DOI](https://img.shields.io/badge/DOI-10.5281/zenodo.6127352-cornflowerblue?style=flat-square)](https://doi.org/10.5281/zenodo.6127352)
[![Tests](https://img.shields.io/github/workflow/status/astropenguin/arxiv-post/Tests?label=Tests&style=flat-square)](https://github.com/astropenguin/arxiv-post/actions)
[![DOI](https://img.shields.io/badge/DOI-10.5281/zenodo.5633924-cornflowerblue?style=flat-square)](https://doi.org/10.5281/zenodo.5633924)
[![Tests](https://img.shields.io/github/actions/workflow/status/astropenguin/arxiv-post/tests.yml?label=Tests&style=flat-square)](https://github.com/astropenguin/arxiv-post/actions)

Translate and post arXiv articles to Slack and various apps

Expand Down
17 changes: 12 additions & 5 deletions arxiv_post/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
# type: ignore
__all__ = [
"apps",
"arxiv",
"article",
"cli",
"consts",
"deepl",
]
__version__ = "0.7.0"


# submodules
from . import apps
from . import arxiv
from . import article
from . import cli
from . import consts
from . import deepl


# metadata
__version__ = "0.6.4"
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Project information
author = "Akio Taniguchi"
copyright = "2021-2022 Akio Taniguchi"
copyright = "2020-2023 Akio Taniguchi"


# General configuration
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 = "arxiv-post"
version = "0.6.4"
version = "0.7.0"
description = "Translate and post arXiv articles to Slack and various apps"
authors = ["Akio Taniguchi <taniguchi@a.phys.nagoya-u.ac.jp>"]
keywords = ["arxiv", "deepl", "slack", "translation"]
Expand Down

0 comments on commit d11fee5

Please sign in to comment.