Skip to content

Commit 650a11c

Browse files
authored
Merge branch 'main' into expr-conversion-poc
2 parents 0d1b0a4 + d7f8fd2 commit 650a11c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+253
-356
lines changed

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656

5757
# Initializes the CodeQL tools for scanning.
5858
- name: Initialize CodeQL
59-
uses: github/codeql-action/init@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.9
59+
uses: github/codeql-action/init@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3.29.11
6060
with:
6161
languages: ${{ matrix.language }}
6262
build-mode: none
@@ -72,6 +72,6 @@ jobs:
7272
pip install -e .
7373
7474
- name: Perform CodeQL Analysis
75-
uses: github/codeql-action/analyze@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.9
75+
uses: github/codeql-action/analyze@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3.29.11
7676
with:
7777
category: "/language:${{ matrix.language }}"

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@ __pycache__
4747

4848
# documentation build artifacts
4949

50-
docs/build
50+
docs/_build
5151
site/

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version: 2
88
# Build documentation in the doc/ directory with Sphinx
99
sphinx:
1010
builder: dirhtml
11-
configuration: docs/source/conf.py
11+
configuration: docs/conf.py
1212
fail_on_warning: true
1313

1414
# Set the version of Python and requirements required to build the docs.

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# Django MongoDB Backend
22

3-
This backend is currently in development and is not advised for production workflows. Backwards incompatible
4-
changes may be made without notice. We welcome your feedback as we continue to
5-
explore and build. The best way to share this is via our [MongoDB Community Forum](https://www.mongodb.com/community/forums/tag/python).
6-
73
## Index
84
* [Documentation](https://www.mongodb.com/docs/languages/python/django-mongodb/current/)
95
* [Getting Started](https://www.mongodb.com/docs/languages/python/django-mongodb/current/get-started/)
@@ -18,10 +14,8 @@ https://django-mongodb-backend.readthedocs.io/en/latest/.
1814
Use the version of `django-mongodb-backend` that corresponds to your version of
1915
Django. For example, to get the latest compatible release for Django 5.2.x:
2016
```bash
21-
pip install --pre django-mongodb-backend==5.2.*
17+
pip install django-mongodb-backend==5.2.*
2218
```
23-
(Until the package is out of beta, you must use pip's `--pre` option.)
24-
2519

2620
## Quickstart
2721

@@ -87,7 +81,9 @@ Then, visit http://127.0.0.1:8000/. This page displays a "Congratulations!" mess
8781

8882
### Issues & Help
8983

90-
We're glad to have such a vibrant community of users of Django MongoDB Backend. We recommend seeking support for general questions through the [MongoDB Community Forums](https://www.mongodb.com/community/forums/tag/python).
84+
We're glad to have such a vibrant community of users of Django MongoDB Backend.
85+
You can ask questions and request features through the
86+
[MongoDB Community Forums](https://www.mongodb.com/community/forums/tag/python).
9187

9288

9389
#### Bugs / Feature Requests

django_mongodb_backend/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "5.2.0b3.dev0"
1+
__version__ = "5.2.1.dev0"
22

33
# Check Django compatibility before other imports which may fail if the
44
# wrong version of Django is installed.

0 commit comments

Comments
 (0)