Skip to content

Commit 31851b5

Browse files
committed
Merge tag 'v0.5.0' into develop
v0.5.0 BREAKING CHANGES: - Turn 'essid_generators' into a private attribute Enhancements: - Update gitignore - Add type hints - Update faker requirement from <14.0,>=4.1 to >=4.1,<34.0 - Run Ruff linter and formatter on all files - Add '--fix' argument to 'ruff' pre-commit hook - Add 'ruff-format' pre-commit hook - Update pre-commit hooks - Remove isort pre-commit hook - Replace isort with Ruff - Add support for Python 3.11, 3.12 and 3.13 - Drop support for Python 3.7 and 3.8 - Replace 'setup.cfg' with 'pyproject.toml' - Replace Pylint and Flake8 with Ruff - Remove 'requirements.txt' - Replace 'assertTrue' with 'assertIn' Fixes: - Fix Sphinx configuration with Python 3.12 - Fix formatting issues Documentation: - Update readme - Update copyright year range - Update installation instructions - Reorganise documentation pages - Update instructions related to 'setup.cfg' - Use dynamic copyright range in Sphinx doc - Add 'Development' section to documentation Infrastructure: - Use latest images in CI workflows - Add CodeQL workflow for GitHub code scanning
2 parents de7e0f9 + 99e5b64 commit 31851b5

File tree

3 files changed

+4
-13
lines changed

3 files changed

+4
-13
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2018-2022 Paul-Emmanuel Raoul <skyper@skyplabs.net>
3+
Copyright (c) 2018-2024 Paul-Emmanuel Raoul <skyper@skyplabs.net>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.rst

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
Faker Wi-Fi ESSID
33
=================
44

5-
|PyPI Package| |PyPI Downloads| |PyPI Python Versions| |Build Status| |LGTM
6-
Grade| |LGTM Alerts|
5+
|PyPI Package| |PyPI Downloads| |PyPI Python Versions| |Build Status|
76

87
`Faker <https://github.com/joke2k/faker/>`__ provider for Wi-Fi ESSIDs.
98

@@ -32,20 +31,12 @@ Usage
3231
License
3332
=======
3433

35-
`MIT <https://opensource.org/licenses/MIT>`__
34+
This project is `MIT <https://opensource.org/license/MIT>`__ licensed.
3635

3736
.. |Build Status| image:: https://github.com/SkypLabs/faker-wifi-essid/actions/workflows/test_and_publish.yml/badge.svg?branch=develop
3837
:target: https://github.com/SkypLabs/faker-wifi-essid/actions/workflows/test_and_publish.yml?query=branch%3Adevelop
3938
:alt: Build Status
4039

41-
.. |LGTM Alerts| image:: https://img.shields.io/lgtm/alerts/g/SkypLabs/faker-wifi-essid.svg?logo=lgtm&logoWidth=18
42-
:target: https://lgtm.com/projects/g/SkypLabs/fake-wifi-essid/alerts/
43-
:alt: LGTM Alerts
44-
45-
.. |LGTM Grade| image:: https://img.shields.io/lgtm/grade/python/g/SkypLabs/faker-wifi-essid.svg?logo=lgtm&logoWidth=18
46-
:target: https://lgtm.com/projects/g/SkypLabs/faker-wifi-essid/context:python
47-
:alt: LGTM Grade
48-
4940
.. |PyPI Downloads| image:: https://img.shields.io/pypi/dm/faker-wifi-essid.svg?style=flat
5041
:target: https://pypi.org/project/faker-wifi-essid/
5142
:alt: PyPI Package Downloads Per Month

src/faker_wifi_essid/__init__.py

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

77
from .wifi_essid import WifiESSID
88

9-
__version__ = "0.4.1"
9+
__version__ = "0.5.0"
1010

1111
__all__ = [
1212
"WifiESSID",

0 commit comments

Comments
 (0)