Skip to content

Commit

Permalink
Merge pull request #32 from kurtmckee/release-4.1.0
Browse files Browse the repository at this point in the history
Release 4.1.0
  • Loading branch information
kurtmckee authored Sep 27, 2024
2 parents a3cf103 + 70e2870 commit e5ef7d1
Show file tree
Hide file tree
Showing 17 changed files with 197 additions and 125 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
uses: "actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332" # v4.1.7

- name: "Setup Pythons"
uses: "actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f" # v5.1.1
uses: "actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3" # v5.2.0
env:
# Disable pip upgrade warnings while setting up Python versions.
PIP_DISABLE_PIP_VERSION_CHECK: "1"
Expand Down
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ repos:
- "--py38-plus"

- repo: "https://github.com/psf/black-pre-commit-mirror"
rev: "24.4.2"
rev: "24.8.0"
hooks:
- id: "black"

Expand All @@ -44,25 +44,25 @@ repos:
- id: "isort"

- repo: "https://github.com/pycqa/flake8"
rev: "7.1.0"
rev: "7.1.1"
hooks:
- id: "flake8"
additional_dependencies:
- "flake8-bugbear==24.4.26"
- "flake8-bugbear==24.8.19"

- repo: "https://github.com/editorconfig-checker/editorconfig-checker.python"
rev: "2.7.3"
rev: "3.0.3"
hooks:
- id: "editorconfig-checker"

- repo: "https://github.com/python-jsonschema/check-jsonschema"
rev: "0.29.1"
rev: "0.29.2"
hooks:
- id: "check-dependabot"
- id: "check-github-workflows"

- repo: "https://github.com/rhysd/actionlint"
rev: "v1.7.1"
rev: "v1.7.2"
hooks:
- id: "actionlint"

Expand Down
14 changes: 13 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,23 @@ Unreleased changes

Please see the fragment files in the `changelog.d directory`_.

.. _changelog.d directory: https://github.com/kurtmckee/fru-tool/tree/main/changelog.d
.. _changelog.d directory: https://github.com/genotrance/fru-tool/tree/main/changelog.d


.. scriv-insert-here
.. _changelog-4.1.0:

4.1.0 - 2024-09-26
==================

Added
-----

- Decode FRU fields encoded using 6-bit ASCII.

Note that it is currently not possible to encode fields back to 6-bit ASCII.

.. _changelog-4.0.2:

4.0.2 - 2024-08-04
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fru"
version = "4.0.2"
version = "4.1.0"
description = "Read and write binary FRU files"
authors = [
"Kurt McKee <[email protected]>",
Expand All @@ -11,7 +11,7 @@ readme = "README.rst"
include = [
"CHANGELOG.rst",
]
repository = "https://github.com/kurtmckee/fru-tool/"
repository = "https://github.com/genotrance/fru-tool/"
keywords = ["fru", "ipmi"]
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down
56 changes: 28 additions & 28 deletions requirements/mypy/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion requirements/mypy/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mypy-extensions==1.0.0 ; python_version >= "3.8"
mypy==1.11.1 ; python_version >= "3.8"
mypy==1.11.2 ; python_version >= "3.8"
tomli==2.0.1 ; python_version < "3.11" and python_version >= "3.8"
typing-extensions==4.12.2 ; python_version >= "3.8"
Loading

0 comments on commit e5ef7d1

Please sign in to comment.