Skip to content

Commit a78d419

Browse files
authored
Merge pull request #133 from maxmind/greg/fix-sdist
Fix sdist release
2 parents b7bdd92 + f72d69b commit a78d419

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

.github/workflows/release.yml

+2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- uses: actions/checkout@v4
41+
with:
42+
submodules: true
4143

4244
- name: Build sdist
4345
run: pipx run build --sdist

HISTORY.rst

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
History
44
-------
55

6+
2.5.1 (2023-11-09)
7+
++++++++++++++++++
8+
9+
* This is a re-release of 2.5.0 to address missing files from the sdist.
10+
Reported by Lumír 'Frenzy' Balhar. GitHub #132.
11+
612
2.5.0 (2023-11-08)
713
++++++++++++++++++
814

maxminddb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def open_database(
8181

8282

8383
__title__ = "maxminddb"
84-
__version__ = "2.5.0"
84+
__version__ = "2.5.1"
8585
__author__ = "Gregory Oschwald"
8686
__license__ = "Apache License, Version 2.0"
8787
__copyright__ = "Copyright 2013-2023 MaxMind, Inc."

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "maxminddb"
7-
version = "2.5.0"
7+
version = "2.5.1"
88
description = "Reader for the MaxMind DB format"
99
authors = [
1010
{name = "Gregory Oschwald", email = "[email protected]"},

0 commit comments

Comments
 (0)