Skip to content

Commit

Permalink
Merge branch 'main' into add-activate-page
Browse files Browse the repository at this point in the history
  • Loading branch information
pydanny authored Oct 22, 2023
2 parents 102ba73 + 1cc3f16 commit f4a9fda
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 3 deletions.
31 changes: 30 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,33 @@

# [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

---


# CHANGELOG

# [v0.5.0](https://github.com/pydanny/dj-notebook/releases/tag/v0.5.0)
Expand Down Expand Up @@ -89,4 +118,4 @@ plus.model_graph(plus.User)
* Correct the release notes by @pydanny in https://github.com/pydanny/dj-notebook/pull/26


**Full Changelog**: https://github.com/pydanny/dj-notebook/compare/v0.2.1...v0.2.2
**Full Changelog**: https://github.com/pydanny/dj-notebook/compare/v0.2.1...v0.2.2
2 changes: 1 addition & 1 deletion docs/releasing.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Releasing on PyPI

1. Update the `version` in `pyproject.toml`. We use semantic versioning
1. Update the `version` in `pyproject.toml` and `__version__` in` `src/__init__.py`. We use semantic versioning
2. Create a branch called `release-x.x.x`
3. At the command line, run `make tag`
4. Go to [tags page](https://github.com/pydanny/dj-notebook/tags), choose the most recent tag, and click `Draft a new release`
Expand Down
2 changes: 1 addition & 1 deletion 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.5.0"
version = "0.6.0"
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 Down
3 changes: 3 additions & 0 deletions src/dj_notebook/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
from .shell_plus import Plus


__version__ = "0.6.0"


def activate(
settings: str = None, quiet_load: bool = True, *, dotenv_file: StrPath | None = None
) -> Plus:
Expand Down

0 comments on commit f4a9fda

Please sign in to comment.