Skip to content

Commit

Permalink
Bump version to 1.0 (#20)
Browse files Browse the repository at this point in the history
* Bump version to 1.0

* Add ReadTheDocs configuration file

* Update coverage action

* Update main.yml
  • Loading branch information
jacebrowning committed Feb 14, 2023
1 parent 5a43ca4 commit df2af1a
Show file tree
Hide file tree
Showing 7 changed files with 672 additions and 646 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ jobs:
run: make test

- name: Upload coverage
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
13 changes: 13 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: 2

build:
os: ubuntu-22.04
tools:
python: "3.11"

mkdocs:
configuration: mkdocs.yml

python:
install:
- requirements: docs/requirements.txt
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 1.0 (2023-02-14)

- Initial stable release.

## 0.2 (2022-06-14)

- Added logic to detect the default browser.
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ $(MKDOCS_INDEX): docs/requirements.txt mkdocs.yml docs/*.md
poetry run mkdocs build --clean --strict

docs/requirements.txt: poetry.lock
@ poetry export --dev --without-hashes | grep mkdocs > $@
@ poetry export --dev --without-hashes | grep pygments >> $@
@ poetry export --with dev --without-hashes | grep mkdocs > $@
@ poetry export --with dev --without-hashes | grep pygments >> $@

.PHONY: uml
uml: install docs/*.png
Expand Down
4 changes: 2 additions & 2 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
mkdocs==1.3.0; python_version >= "3.6"
pygments==2.11.2; python_version >= "3.5"
mkdocs==1.4.2 ; python_version >= "3.10" and python_version < "4.0"
pygments==2.11.2 ; python_version >= "3.10" and python_version < "4.0"
1,282 changes: 645 additions & 637 deletions poetry.lock

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]

name = "slackoff"
version = "0.2.3"
version = "1.0"
description = "Automatically sign out of Slack workspaces on macOS."

license = "MIT"
Expand All @@ -17,7 +17,7 @@ repository = "https://github.com/jacebrowning/slackoff"
keywords = [
]
classifiers = [
"Development Status :: 3 - Alpha",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
Expand All @@ -26,6 +26,7 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Communications :: Chat",
]

Expand All @@ -46,7 +47,7 @@ black = "^22.1"
isort = "^5.10"

# Linters
mypy = "~0.942"
mypy = "^1.0"
pydocstyle = "^6.1"
pylint = "~2.13.4"
types-setuptools = "*"
Expand All @@ -63,7 +64,7 @@ freezegun = "*"
coveragespace = "^4.0"

# Documentation
mkdocs = "~1.3"
mkdocs = "^1.4"
pygments = "^2.11.1"

# Tooling
Expand Down

0 comments on commit df2af1a

Please sign in to comment.