Skip to content

Commit c62a884

Browse files
committed
Correct GitHub user
1 parent 120c118 commit c62a884

File tree

7 files changed

+23
-20
lines changed

7 files changed

+23
-20
lines changed

.cookiecutter.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
"docker_compose_python_version": "3.12",
1010
"email": "[email protected]",
1111
"github_owner": "OmenApps",
12-
"github_user": "jacklinke",
12+
"github_user": "OmenApps",
1313
"license": "MIT",
1414
"package_description": "Weather from the Open Weather Map APIs",
1515
"package_name": "django_owm",
1616
"project_name": "django-owm",
1717
"use_playwright": "n",
1818
"use_postgres": "n",
19-
"version": "2024.10.1"
19+
"version": "2024.10.2"
2020
}

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
88

99
## [2024.10.1]
1010

11+
## [2024.10.2]
12+
1113
Initial release!
1214

1315
### Added
1416

1517
- TBD
1618

17-
[unreleased]: https://github.com/jacklinke/django_owm/compare/HEAD...HEAD
18-
[2024.10.1]: https://github.com/jacklinke/django_owm/releases/tag/2024.10.1
19+
[unreleased]: https://github.com/OmenApps/django_owm/compare/HEAD...HEAD
20+
[2024.10.1]: https://github.com/OmenApps/django_owm/releases/tag/2024.10.1
21+
[2024.10.2]: https://github.com/OmenApps/django_owm/releases/tag/2024.10.2

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Here is a list of important resources for contributors:
1212
- [Code of Conduct]
1313

1414
[mit license]: https://opensource.org/licenses/MIT
15-
[source code]: https://github.com/jacklinke/django-owm
15+
[source code]: https://github.com/OmenApps/django-owm
1616
[documentation]: https://django-owm.readthedocs.io/
17-
[issue tracker]: https://github.com/jacklinke/django-owm/issues
17+
[issue tracker]: https://github.com/OmenApps/django-owm/issues
1818

1919
## How to report a bug
2020

@@ -108,7 +108,7 @@ $ nox --session=pre-commit -- install
108108
It is recommended to open an issue before starting work on anything.
109109
This will allow a chance to talk it over with the owners and validate your approach.
110110

111-
[pull request]: https://github.com/jacklinke/django-owm/pulls
111+
[pull request]: https://github.com/OmenApps/django-owm/pulls
112112

113113
<!-- github-only -->
114114

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
[pypi status]: https://pypi.org/project/django-owm/
1616
[read the docs]: https://django-owm.readthedocs.io/
17-
[tests]: https://github.com/jacklinke/django-owm/actions?workflow=Tests
18-
[codecov]: https://app.codecov.io/gh/jacklinke/django-owm
17+
[tests]: https://github.com/OmenApps/django-owm/actions?workflow=Tests
18+
[codecov]: https://app.codecov.io/gh/OmenApps/django-owm
1919
[pre-commit]: https://github.com/pre-commit/pre-commit
2020
[black]: https://github.com/psf/black
2121

@@ -158,11 +158,11 @@ This project was generated from [@OmenApps]'s [Cookiecutter Django Package] temp
158158
[@omenapps]: https://github.com/OmenApps
159159
[pypi]: https://pypi.org/
160160
[cookiecutter django package]: https://github.com/OmenApps/cookiecutter-django-package
161-
[file an issue]: https://github.com/jacklinke/django-owm/issues
161+
[file an issue]: https://github.com/OmenApps/django-owm/issues
162162
[pip]: https://pip.pypa.io/
163163

164164
<!-- github-only -->
165165

166-
[license]: https://github.com/jacklinke/django-owm/blob/main/LICENSE
167-
[contributor guide]: https://github.com/jacklinke/django-owm/blob/main/CONTRIBUTING.md
166+
[license]: https://github.com/OmenApps/django-owm/blob/main/LICENSE
167+
[contributor guide]: https://github.com/OmenApps/django-owm/blob/main/CONTRIBUTING.md
168168
[usage reference]: https://django-owm.readthedocs.io/en/latest/usage.html

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ autoreference
2121
contributing
2222
Code of Conduct <codeofconduct>
2323
License <license>
24-
Changelog <https://github.com/jacklinke/django-owm/releases>
24+
Changelog <https://github.com/OmenApps/django-owm/releases>
2525
```

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "django-owm"
3-
version = "2024.10.1"
3+
version = "2024.10.2"
44
description = "Weather from the Open Weather Map APIs"
55
authors = [{ name = "Jack Linke", email = "[email protected]" }]
66
license = { text = "MIT" }
@@ -12,7 +12,7 @@ classifiers = [
1212
"Framework :: Django :: 4.2",
1313
"Framework :: Django :: 5.0",
1414
"Framework :: Django :: 5.1",
15-
"Development Status :: 3 - Alpha",
15+
"Development Status :: 4 - Beta",
1616
"Intended Audience :: Developers",
1717
"License :: OSI Approved :: MIT License",
1818
"Operating System :: OS Independent",
@@ -33,11 +33,11 @@ dependencies = [
3333
]
3434

3535
[project.urls]
36-
Changelog = "https://github.com/jacklinke/django-owm/releases"
37-
Homepage = "https://github.com/jacklinke/django-owm"
38-
Repository = "https://github.com/jacklinke/django-owm"
36+
Changelog = "https://github.com/OmenApps/django-owm/releases"
37+
Homepage = "https://github.com/OmenApps/django-owm"
38+
Repository = "https://github.com/OmenApps/django-owm"
3939
Documentation = "https://django-owm.readthedocs.io"
40-
Issues = "https://github.com/jacklinke/django-owm/issues"
40+
Issues = "https://github.com/OmenApps/django-owm/issues"
4141

4242
[project.optional-dependencies]
4343
dev = [

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)