Skip to content

Commit fa2155e

Browse files
Change project ownership to AmbitionEng (#195)
* Initialize template from version 072543e27d8b506a6628f7793798609c62d6a8ae * Update template to version b7d2321846eeeb120ea9455597ddcf9bd8b5e7a4 * bump version * Remove funding * fix release notes
1 parent a3728c5 commit fa2155e

15 files changed

+46
-37
lines changed

.circleci/config.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2.1
22

33
orbs:
4-
opus10:
4+
ambitioneng:
55
executors:
66
python:
77
working_directory: /code
@@ -38,20 +38,20 @@ orbs:
3838
jobs:
3939
test_pg_min:
4040
executor:
41-
name: opus10/python
41+
name: ambitioneng/python
4242
pg_version: "13.16"
4343
steps:
44-
- opus10/test
44+
- ambitioneng/test
4545

4646
test_pg_max:
4747
executor:
48-
name: opus10/python
48+
name: ambitioneng/python
4949
pg_version: "17.0"
5050
steps:
51-
- opus10/test
51+
- ambitioneng/test
5252

5353
lint:
54-
executor: opus10/python
54+
executor: ambitioneng/python
5555
steps:
5656
- checkout
5757
- restore_cache:
@@ -60,7 +60,7 @@ jobs:
6060
- run: make lint
6161

6262
type_check:
63-
executor: opus10/python
63+
executor: ambitioneng/python
6464
steps:
6565
- checkout
6666
- restore_cache:
@@ -69,7 +69,7 @@ jobs:
6969
- run: make type-check || true
7070

7171
deploy:
72-
executor: opus10/python
72+
executor: ambitioneng/python
7373
steps:
7474
- checkout
7575
- run: ssh-add -D

.github/FUNDING.yml

-1
This file was deleted.

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 4.13.3 (2024-12-15)
4+
5+
#### Changes
6+
7+
- Changed project ownership to `AmbitionEng` by [@wesleykendall](https://github.com/wesleykendall) in [#195](https://github.com/AmbitionEng/django-pgtrigger/pull/195).
8+
39
## 4.13.2 (2024-11-18)
410

511
#### Fixes

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Contributing Guide
22

3-
This project was created using footing. For more information about footing, go to the [footing docs](https://github.com/Opus10/footing).
3+
This project was created using footing. For more information about footing, go to the [footing docs](https://github.com/AmbitionEng/footing).
44

55
## Setup
66

77
Set up your development environment with:
88

9-
git clone [email protected]:Opus10/django-pgtrigger.git
9+
git clone [email protected]:AmbitionEng/django-pgtrigger.git
1010
cd django-pgtrigger
1111
make docker-setup
1212

LICENSE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2024, Opus 10
1+
Copyright (c) 2025, Ambition
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without
@@ -18,7 +18,7 @@ modification, are permitted provided that the following conditions are met:
1818
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1919
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
2020
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21-
DISCLAIMED. IN NO EVENT SHALL OPUS 10 BE LIABLE FOR ANY
21+
DISCLAIMED. IN NO EVENT SHALL AMBITION BE LIABLE FOR ANY
2222
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
2323
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
2424
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ db-setup:
105105
# Sets up a conda development environment
106106
.PHONY: conda-create
107107
conda-create:
108-
-conda env create -f environment.yml --force
108+
-conda env create -f environment.yml -y
109109
$(EXEC_WRAPPER) poetry config virtualenvs.create false --local
110110

111111

devops.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
package deployment, changelog generation, and changelog checking.
66
77
This script is generated by the template at
8-
https://github.com/Opus10/python-library-template
8+
https://github.com/AmbitionEng/python-library-template
99
1010
Do not change this script! Any fixes or updates to this script should be made
11-
to https://github.com/Opus10/python-library-template
11+
to https://github.com/AmbitionEng/python-library-template
1212
"""
1313

1414
import os
@@ -51,7 +51,7 @@ def deploy() -> None:
5151

5252
_publish_to_pypi()
5353

54-
print(f"Deployment complete.")
54+
print("Deployment complete.")
5555

5656

5757
if __name__ == "__main__":

docs/css/mkdocs-material.css

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,28 @@
11
.md-typeset__table {
2-
min-width: 100%;
2+
min-width: 100%;
33
}
4-
4+
55
.md-typeset table:not([class]) {
6-
display: table;
6+
display: table;
77
}
88

99
:root {
10-
--md-primary-fg-color: #BD4D86;
11-
--md-primary-fg-color--light: #BD4D86;
12-
--md-primary-fg-color--dark: #BD4D86;
10+
--md-primary-fg-color: #1d1f29;
11+
--md-primary-fg-color--light: #1d1f29;
12+
--md-primary-fg-color--dark: #1d1f29;
13+
}
14+
15+
.md-content {
16+
--md-typeset-a-color: #00bc70;
1317
}
1418

1519
.md-footer {
16-
background-color: #BD4D86;
20+
background-color: #1d1f29;
1721
}
1822
.md-footer-meta {
19-
background-color: #973E6B;
23+
background-color: #1d1f29;
2024
}
2125

2226
readthedocs-flyout {
23-
display: none;
27+
display: none;
2428
}

docs/overrides/partials/copyright.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
{% if not config.extra.generator == false %}
88
Created by
99
<a
10-
href="https://github.com/sponsors/wesleykendall"
10+
href="https://github.com/AmbitionEng"
1111
target="_blank" rel="noopener"
1212
>
13-
@wesleykendall
13+
Ambition
1414
</a>
1515
{% endif %}
16-
</div>
16+
</div>

docs/static/dark_logo.png

9.52 KB
Loading

docs/static/light_logo.png

25.9 KB
Loading

docs/static/logo.png

-13.3 KB
Binary file not shown.

footing.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
_extensions:
22
- jinja2_time.TimeExtension
33
_template: [email protected]:Opus10/public-django-app-template.git
4-
_version: 072543e27d8b506a6628f7793798609c62d6a8ae
4+
_version: b7d2321846eeeb120ea9455597ddcf9bd8b5e7a4
55
check_types_in_ci: 'False'
66
is_django: 'True'
77
module_name: pgtrigger

mkdocs.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
site_name: django-pgtrigger
22
docs_dir: docs
33

4-
repo_name: Opus10/django-pgtrigger
5-
repo_url: https://github.com/Opus10/django-pgtrigger
4+
repo_name: AmbitionEng/django-pgtrigger
5+
repo_url: https://github.com/AmbitionEng/django-pgtrigger
66

77
plugins:
88
- search
@@ -52,8 +52,8 @@ markdown_extensions:
5252
theme:
5353
custom_dir: docs/overrides
5454
name: material
55-
logo: static/logo.png
56-
favicon: static/logo.png
55+
logo: static/dark_logo.png
56+
favicon: static/light_logo.png
5757
features:
5858
- content.code.copy
5959
- navigation.footer

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ packages = [
2828
exclude = [
2929
"*/tests/"
3030
]
31-
version = "4.13.2"
31+
version = "4.13.3"
3232
description = "Postgres trigger support integrated with Django models."
3333
authors = ["Wes Kendall"]
3434
classifiers = [
@@ -48,8 +48,8 @@ classifiers = [
4848
]
4949
license = "BSD-3-Clause"
5050
readme = "README.md"
51-
homepage = "https://github.com/Opus10/django-pgtrigger"
52-
repository = "https://github.com/Opus10/django-pgtrigger"
51+
homepage = "https://github.com/AmbitionEng/django-pgtrigger"
52+
repository = "https://github.com/AmbitionEng/django-pgtrigger"
5353
documentation = "https://django-pgtrigger.readthedocs.io"
5454

5555
[tool.poetry.dependencies]

0 commit comments

Comments
 (0)