Skip to content

Commit

Permalink
Release v1.0.3
Browse files Browse the repository at this point in the history
Loosen `pydantic` version
Bump version on all linters
  • Loading branch information
dormant-user committed Nov 25, 2024
1 parent c1b593f commit 40fff96
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 54 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ fail_fast: true
exclude: ^(notebooks/|scripts/|.github/|docs/)
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v5.0.0
hooks:
- id: check-yaml
- id: check-json
Expand Down Expand Up @@ -37,13 +37,13 @@ repos:
exclude: doc_generator/

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

- repo: https://github.com/PyCQA/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
args: [--profile, black]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

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

[![Pypi-format](https://img.shields.io/pypi/format/gmail-connector)][pypi-files]
[![Pypi-status](https://img.shields.io/pypi/status/gmail-connector)][pypi]
Expand Down
8 changes: 0 additions & 8 deletions docs/genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -348,14 +348,6 @@ <h2 id="M">M</h2>
<li><a href="index.html#gmailconnector.models.config.IngressConfig.model_config">(gmailconnector.models.config.IngressConfig attribute)</a>
</li>
<li><a href="index.html#gmailconnector.models.config.SMSGatewayModel.model_config">(gmailconnector.models.config.SMSGatewayModel attribute)</a>
</li>
</ul></li>
<li><a href="index.html#gmailconnector.models.config.EgressConfig.model_fields">model_fields (gmailconnector.models.config.EgressConfig attribute)</a>

<ul>
<li><a href="index.html#gmailconnector.models.config.IngressConfig.model_fields">(gmailconnector.models.config.IngressConfig attribute)</a>
</li>
<li><a href="index.html#gmailconnector.models.config.SMSGatewayModel.model_fields">(gmailconnector.models.config.SMSGatewayModel attribute)</a>
</li>
</ul></li>
<li>
Expand Down
41 changes: 7 additions & 34 deletions docs/index.html

Large diffs are not rendered by default.

Binary file modified docs/objects.inv
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion gmailconnector/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
from .validator.address import EmailAddress # noqa: F401
from .validator.validate_email import validate_email # noqa: F401

version = "1.0.2"
version = "1.0.3"
4 changes: 2 additions & 2 deletions gmailconnector/lib/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dnspython==2.6.1
idna==3.*
pydantic[email]==2.4.*
pydantic_settings==2.0.*
pydantic[email]==2.*
pydantic_settings==2.*
pytz
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

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

[project.urls]
Homepage = "https://github.com/thevickypedia/gmail-connector"
Expand Down
10 changes: 7 additions & 3 deletions release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Release Notes
=============

v1.0.3 (11/24/2024)
-------------------
- Loosen `pydantic` version

v1.0.2 (06/05/2024)
-------------------
- Removes complexity with phone number validation
Expand Down Expand Up @@ -58,7 +62,7 @@ v1.0a (10/26/2023)
- Remove unused namespace package
- Reformat imports and update README.md

0.6.9 (03/16/2023)
0.6.9 (03/17/2023)
------------------
- Simplify samples in README.md and update responses
- Update pypi classifiers
Expand Down Expand Up @@ -235,14 +239,14 @@ v1.0a (10/26/2023)
------------------
- run on release

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

0.0.16 (07/18/2021)
0.0.16 (07/19/2021)
-------------------
- 1. Onboard `pypi` module
- 2. Add `setup.py`, `setup.cfg`, `__init__.py`, `CHANGELOG`
Expand Down

0 comments on commit 40fff96

Please sign in to comment.