Skip to content

Commit

Permalink
Releasing 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pydanny committed Oct 22, 2023
1 parent 1cc3f16 commit 0ee8ab6
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 22 deletions.
52 changes: 34 additions & 18 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,43 @@

# [v0.6.0](https://github.com/pydanny/dj-notebook/releases/tag/v0.6.0)
# [v0.6.1](https://github.com/pydanny/dj-notebook/releases/tag/v0.6.1)

2023-10-22T05:01:55Z by
2023-10-22T05:57:56Z by
[@pydanny](https://github.com/pydanny)

## ## What's Changed
* Add missing read frame example by @pydanny in https://github.com/pydanny/dj-notebook/pull/107
* Raise warning if not run in debug by @skyforest in https://github.com/pydanny/dj-notebook/pull/109
* Added chrisdev to other contributors by @specbeck in https://github.com/pydanny/dj-notebook/pull/110
* Prep for mypy by @pydanny in https://github.com/pydanny/dj-notebook/pull/112
* Use ruff for isort by @pydanny in https://github.com/pydanny/dj-notebook/pull/113
* Document how to install dj-notebook in PyCharm Professional. by @geoffbeier in https://github.com/pydanny/dj-notebook/pull/117
* Link to pycharm instructions in the docs by @pydanny in https://github.com/pydanny/dj-notebook/pull/119
* Add support for Python 3.12 by @pydanny in https://github.com/pydanny/dj-notebook/pull/116
* Remove special case for test harness from application code. by @geoffbeier in https://github.com/pydanny/dj-notebook/pull/120
* Add social cards to docs by @pydanny in https://github.com/pydanny/dj-notebook/pull/125
* Remove official support for Python 3.9 by @pydanny in https://github.com/pydanny/dj-notebook/pull/127
* improve path definitions/config discovery by @geoffbeier in https://github.com/pydanny/dj-notebook/pull/121
* Document new activate function arguments by @pydanny in https://github.com/pydanny/dj-notebook/pull/129
* fix broken link to pycharm page from info box on installation page by @geoffbeier in https://github.com/pydanny/dj-notebook/pull/131

## New Contributors
* @geoffbeier made their first contribution in https://github.com/pydanny/dj-notebook/pull/117
Fixing borked release caused by inconsistent PyPI trove classifiers


**Full Changelog**: https://github.com/pydanny/dj-notebook/compare/v0.6.0...v0.6.1

---


# [v0.6.0](https://github.com/pydanny/dj-notebook/releases/tag/v0.6.0)

2023-10-22T05:01:55Z by
[@pydanny](https://github.com/pydanny)

## ## What's Changed
* Add missing read frame example by @pydanny in https://github.com/pydanny/dj-notebook/pull/107
* Raise warning if not run in debug by @skyforest in https://github.com/pydanny/dj-notebook/pull/109
* Added chrisdev to other contributors by @specbeck in https://github.com/pydanny/dj-notebook/pull/110
* Prep for mypy by @pydanny in https://github.com/pydanny/dj-notebook/pull/112
* Use ruff for isort by @pydanny in https://github.com/pydanny/dj-notebook/pull/113
* Document how to install dj-notebook in PyCharm Professional. by @geoffbeier in https://github.com/pydanny/dj-notebook/pull/117
* Link to pycharm instructions in the docs by @pydanny in https://github.com/pydanny/dj-notebook/pull/119
* Add support for Python 3.12 by @pydanny in https://github.com/pydanny/dj-notebook/pull/116
* Remove special case for test harness from application code. by @geoffbeier in https://github.com/pydanny/dj-notebook/pull/120
* Add social cards to docs by @pydanny in https://github.com/pydanny/dj-notebook/pull/125
* Remove official support for Python 3.9 by @pydanny in https://github.com/pydanny/dj-notebook/pull/127
* improve path definitions/config discovery by @geoffbeier in https://github.com/pydanny/dj-notebook/pull/121
* Document new activate function arguments by @pydanny in https://github.com/pydanny/dj-notebook/pull/129
* fix broken link to pycharm page from info box on installation page by @geoffbeier in https://github.com/pydanny/dj-notebook/pull/131

## New Contributors
* @geoffbeier made their first contribution in https://github.com/pydanny/dj-notebook/pull/117

**Full Changelog**: https://github.com/pydanny/dj-notebook/compare/v0.5.0...v0.6.0

---
Expand Down Expand Up @@ -119,3 +134,4 @@ plus.model_graph(plus.User)


**Full Changelog**: https://github.com/pydanny/dj-notebook/compare/v0.2.1...v0.2.2

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "dj_notebook"
version = "0.6.0"
version = "0.6.1"
description = "A Jupyter notebook with access to objects from the Django ORM is a powerful tool to introspect data and run ad-hoc queries."
readme = "README.md"
authors = [
Expand All @@ -17,10 +17,10 @@ maintainers = [
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django :: 4",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5",
"Framework :: Django :: 5.0",
"Framework :: Jupyter",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python :: 3.10",
Expand Down
2 changes: 1 addition & 1 deletion src/dj_notebook/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from .shell_plus import Plus


__version__ = "0.6.0"
__version__ = "0.6.1"


def activate(
Expand Down

0 comments on commit 0ee8ab6

Please sign in to comment.