Skip to content

Commit 0ddc180

Browse files
committed
fix all links to reflect new django-commons home, update change log
1 parent 602e1e7 commit 0ddc180

File tree

10 files changed

+97
-87
lines changed

10 files changed

+97
-87
lines changed

.github/workflows/lint.yml

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ permissions:
55

66
on:
77
push:
8+
tags-ignore:
9+
- '*'
810
pull_request:
911
workflow_call:
1012
workflow_dispatch:

.github/workflows/test.yml

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ permissions:
55

66
on:
77
push:
8+
tags-ignore:
9+
- '*'
810
pull_request:
911
workflow_call:
1012
workflow_dispatch:

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
[![PyPI djversions](https://img.shields.io/pypi/djversions/django-enum.svg)](https://pypi.org/project/django-enum/)
88
[![PyPI status](https://img.shields.io/pypi/status/django-enum.svg)](https://pypi.python.org/pypi/django-enum)
99
[![Documentation Status](https://readthedocs.org/projects/django-enum/badge/?version=latest)](http://django-enum.readthedocs.io/?badge=latest/)
10-
[![Code Cov](https://codecov.io/gh/bckohan/django-enum/branch/main/graph/badge.svg?token=0IZOKN2DYL)](https://codecov.io/gh/bckohan/django-enum)
11-
[![Test Status](https://github.com/bckohan/django-enum/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/bckohan/django-enum/actions/workflows/test.yml?query=branch:main)
12-
[![Lint Status](https://github.com/bckohan/django-enum/actions/workflows/lint.yml/badge.svg?branch=main)](https://github.com/bckohan/django-enum/actions/workflows/lint.yml?query=branch:main)
10+
[![Code Cov](https://codecov.io/gh/django-commons/django-enum/branch/main/graph/badge.svg?token=0IZOKN2DYL)](https://codecov.io/gh/django-commons/django-enum)
11+
[![Test Status](https://github.com/django-commons/django-enum/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/django-commons/django-enum/actions/workflows/test.yml?query=branch:main)
12+
[![Lint Status](https://github.com/django-commons/django-enum/actions/workflows/lint.yml/badge.svg?branch=main)](https://github.com/django-commons/django-enum/actions/workflows/lint.yml?query=branch:main)
1313
[![Published on Django Packages](https://img.shields.io/badge/Published%20on-Django%20Packages-0c3c26)](https://djangopackages.org/packages/p/django-enum/)
1414

1515
---------------------------------------------------------------------------------------------------
@@ -194,7 +194,7 @@ class Color(TextChoices):
194194

195195
## Installation
196196

197-
1. Clone django-enum from [GitHub](https://github.com/bckohan/django-enum) or install a release off [pypi](https://pypi.org/project/django-enum):
197+
1. Clone django-enum from [GitHub](https://github.com/django-commons/django-enum) or install a release off [pypi](https://pypi.org/project/django-enum):
198198

199199
```bash
200200
pip install django-enum
@@ -221,16 +221,16 @@ class Color(TextChoices):
221221

222222
Like with [Django](https://www.djangoproject.com), [PostgreSQL](https://www.postgresql.org) is the preferred database for support. The full test suite is run against all combinations of currently supported versions of [Django](https://www.djangoproject.com), [Python](https://www.python.org), and [PostgreSQL](https://www.postgresql.org) as well as [psycopg3](https://pypi.org/project/psycopg) and [psycopg2](https://pypi.org/project/psycopg2). The other RDBMS supported by [Django](https://www.djangoproject.com) are also tested including [SQLite](https://www.sqlite.org), [MySQL](https://www.mysql.com), [MariaDB](https://mariadb.org) and [Oracle](https://www.oracle.com/database). For these RDBMS (with the exception of [Oracle](https://www.oracle.com/database), tests are run against the minimum and maximum supported version combinations to maximize coverage breadth.
223223

224-
**See the [latest test runs](https://github.com/bckohan/django-enum/actions/workflows/test.yml) for our current test matrix**
224+
**See the [latest test runs](https://github.com/django-commons/django-enum/actions/workflows/test.yml) for our current test matrix**
225225

226226
For [Oracle](https://www.oracle.com/database), only the latest version of the free database is tested against the minimum and maximum supported versions of Python, Django and the [cx-Oracle](https://pypi.org/project/cx-Oracle) driver.
227227

228228
## Further Reading
229229

230230
Consider using [django-render-static](https://pypi.org/project/django-render-static) to make your enumerations [DRY](https://en.wikipedia.org/wiki/Don%27t_repeat_yourself) across the full stack!
231231

232-
Please report bugs and discuss features on the [issues page](https://github.com/bckohan/django-enum/issues).
232+
Please report bugs and discuss features on the [issues page](https://github.com/django-commons/django-enum/issues).
233233

234-
[Contributions](https://github.com/bckohan/django-enum/blob/main/CONTRIBUTING.md) are encouraged!
234+
[Contributions](https://github.com/django-commons/django-enum/blob/main/CONTRIBUTING.md) are encouraged!
235235

236236
[Full documentation at read the docs.](https://django-enum.readthedocs.io)

SECURITY.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Security Policy
22

3-
[![CodeQL](https://github.com/bckohan/django-enum/actions/workflows/github-code-scanning/codeql/badge.svg?branch=main)](https://github.com/bckohan/django-enum/actions/workflows/github-code-scanning/codeql?query=branch:main)
4-
[![Zizmor](https://github.com/bckohan/django-enum/actions/workflows/zizmor.yml/badge.svg?branch=main)](https://woodruffw.github.io/zizmor)
5-
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/bckohan/django-enum/badge)](https://securityscorecards.dev/viewer/?uri=github.com/bckohan/django-enum)
3+
[![CodeQL](https://github.com/django-commons/django-enum/actions/workflows/github-code-scanning/codeql/badge.svg?branch=main)](https://github.com/django-commons/django-enum/actions/workflows/github-code-scanning/codeql?query=branch:main)
4+
[![Zizmor](https://github.com/django-commons/django-enum/actions/workflows/zizmor.yml/badge.svg?branch=main)](https://woodruffw.github.io/zizmor)
5+
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/django-commons/django-enum/badge)](https://securityscorecards.dev/viewer/?uri=github.com/django-commons/django-enum)
66

77
## Supported Versions
88

99
Only the latest version [![PyPI version](https://badge.fury.io/py/django-enum.svg)](https://pypi.python.org/pypi/django-enum) is supported.
1010

1111
## Reporting a Vulnerability
1212

13-
If you think you have found a vulnerability, and even if you are not sure, please [report it to us in private](https://github.com/bckohan/django-enum/security/advisories/new). We will review it and get back to you. Please refrain from public discussions of the issue.
13+
If you think you have found a vulnerability, and even if you are not sure, please [report it to us in private](https://github.com/django-commons/django-enum/security/advisories/new). We will review it and get back to you. Please refrain from public discussions of the issue.

0 commit comments

Comments
 (0)