Skip to content

Commit 40fff96

Browse files
committed
Release v1.0.3
Loosen `pydantic` version Bump version on all linters
1 parent c1b593f commit 40fff96

File tree

10 files changed

+23
-54
lines changed

10 files changed

+23
-54
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ fail_fast: true
33
exclude: ^(notebooks/|scripts/|.github/|docs/)
44
repos:
55
- repo: https://github.com/pre-commit/pre-commit-hooks
6-
rev: v4.4.0
6+
rev: v5.0.0
77
hooks:
88
- id: check-yaml
99
- id: check-json
@@ -37,13 +37,13 @@ repos:
3737
exclude: doc_generator/
3838

3939
- repo: https://github.com/PyCQA/flake8
40-
rev: 7.0.0
40+
rev: 7.1.1
4141
hooks:
4242
- id: flake8
4343
args: [-j8, '--ignore=F401,W503,E203,E501,F821,E306,E722,N812']
4444

4545
- repo: https://github.com/PyCQA/isort
46-
rev: 5.12.0
46+
rev: 5.13.2
4747
hooks:
4848
- id: isort
4949
args: [--profile, black]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[![](https://github.com/thevickypedia/gmail-connector/actions/workflows/pages/pages-build-deployment/badge.svg)][gha-pg]
55
[![pypi](https://github.com/thevickypedia/gmail-connector/actions/workflows/python-publish.yml/badge.svg)][gha-pypi]
6-
[![none](https://github.com/thevickypedia/gmail-connector/actions/workflows/markdown-validation.yml/badge.svg)][gha-md]
6+
[![none](https://github.com/thevickypedia/gmail-connector/actions/workflows/markdown.yml/badge.svg)][gha-md]
77

88
[![Pypi-format](https://img.shields.io/pypi/format/gmail-connector)][pypi-files]
99
[![Pypi-status](https://img.shields.io/pypi/status/gmail-connector)][pypi]

docs/genindex.html

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -348,14 +348,6 @@ <h2 id="M">M</h2>
348348
<li><a href="index.html#gmailconnector.models.config.IngressConfig.model_config">(gmailconnector.models.config.IngressConfig attribute)</a>
349349
</li>
350350
<li><a href="index.html#gmailconnector.models.config.SMSGatewayModel.model_config">(gmailconnector.models.config.SMSGatewayModel attribute)</a>
351-
</li>
352-
</ul></li>
353-
<li><a href="index.html#gmailconnector.models.config.EgressConfig.model_fields">model_fields (gmailconnector.models.config.EgressConfig attribute)</a>
354-
355-
<ul>
356-
<li><a href="index.html#gmailconnector.models.config.IngressConfig.model_fields">(gmailconnector.models.config.IngressConfig attribute)</a>
357-
</li>
358-
<li><a href="index.html#gmailconnector.models.config.SMSGatewayModel.model_fields">(gmailconnector.models.config.SMSGatewayModel attribute)</a>
359351
</li>
360352
</ul></li>
361353
<li>

docs/index.html

Lines changed: 7 additions & 34 deletions
Large diffs are not rendered by default.

docs/objects.inv

-16 Bytes
Binary file not shown.

docs/searchindex.js

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

gmailconnector/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
from .validator.address import EmailAddress # noqa: F401
1212
from .validator.validate_email import validate_email # noqa: F401
1313

14-
version = "1.0.2"
14+
version = "1.0.3"

gmailconnector/lib/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dnspython==2.6.1
22
idna==3.*
3-
pydantic[email]==2.4.*
4-
pydantic_settings==2.0.*
3+
pydantic[email]==2.*
4+
pydantic_settings==2.*
55
pytz

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ requires = ["setuptools", "wheel"]
3333
build-backend = "setuptools.build_meta"
3434

3535
[project.optional-dependencies]
36-
dev = ["pre-commit"]
36+
dev = ["sphinx==5.1.1", "pre-commit", "recommonmark", "gitverse"]
3737

3838
[project.urls]
3939
Homepage = "https://github.com/thevickypedia/gmail-connector"

release_notes.rst

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Release Notes
22
=============
33

4+
v1.0.3 (11/24/2024)
5+
-------------------
6+
- Loosen `pydantic` version
7+
48
v1.0.2 (06/05/2024)
59
-------------------
610
- Removes complexity with phone number validation
@@ -58,7 +62,7 @@ v1.0a (10/26/2023)
5862
- Remove unused namespace package
5963
- Reformat imports and update README.md
6064

61-
0.6.9 (03/16/2023)
65+
0.6.9 (03/17/2023)
6266
------------------
6367
- Simplify samples in README.md and update responses
6468
- Update pypi classifiers
@@ -235,14 +239,14 @@ v1.0a (10/26/2023)
235239
------------------
236240
- run on release
237241

238-
0.0.15 (07/18/2021)
242+
0.0.15 (07/19/2021)
239243
-------------------
240244
- 1. Onboard `pypi` module
241245
- 2. Add `setup.py`, `setup.cfg`, `__init__.py`, `CHANGELOG`
242246
- 3. Update README.md and docs
243247
- 4. Move files to `gmailconnector` support package
244248

245-
0.0.16 (07/18/2021)
249+
0.0.16 (07/19/2021)
246250
-------------------
247251
- 1. Onboard `pypi` module
248252
- 2. Add `setup.py`, `setup.cfg`, `__init__.py`, `CHANGELOG`

0 commit comments

Comments
 (0)