Skip to content

Commit 80e9409

Browse files
committed
Merge 16.3 maint branch into 16.4 maint branch
2 parents 9d28e17 + 0ac821a commit 80e9409

22 files changed

+43
-39
lines changed

.github/workflows/lint.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: clang-format
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- name: Run clang-format style check for C/C++
2222
uses: jidicula/clang-format-action@v4.15.0
2323
with:
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
3131
steps:
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333
- name: Install dependencies
3434
run: |
3535
sudo apt-key adv --fetch-keys http://repos.codelite.org/CodeLite.asc
@@ -45,14 +45,14 @@ jobs:
4545
runs-on: ubuntu-latest
4646
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
4747
steps:
48-
- uses: actions/checkout@v5
48+
- uses: actions/checkout@v6
4949
- uses: chartboost/ruff-action@v1
5050

5151
flake8:
5252
runs-on: ubuntu-latest
5353
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
5454
steps:
55-
- uses: actions/checkout@v5
55+
- uses: actions/checkout@v6
5656
- uses: actions/setup-python@v6
5757
with:
5858
python-version: "3.12"
@@ -62,7 +62,7 @@ jobs:
6262
runs-on: ubuntu-latest
6363
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
6464
steps:
65-
- uses: actions/checkout@v5
65+
- uses: actions/checkout@v6
6666
- name: Setup Python
6767
uses: actions/setup-python@v6
6868
with:

.github/workflows/osxbinary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: macos-13
1717
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
- name: Install dependencies
2121
run: |
2222
brew install automake autoconf

.github/workflows/python.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
python-version: ['3.9', '3.13']
2222

2323
steps:
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
- name: Set up Python ${{ matrix.python-version }}
2626
uses: actions/setup-python@v6
2727
with:
@@ -48,7 +48,7 @@ jobs:
4848
python-version: ['3.13']
4949

5050
steps:
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v6
5252
- name: Set up Python ${{ matrix.python-version }}
5353
uses: actions/setup-python@v6
5454
with:
@@ -71,7 +71,7 @@ jobs:
7171
python-version: ['3.13']
7272

7373
steps:
74-
- uses: actions/checkout@v4
74+
- uses: actions/checkout@v6
7575
- name: Set up Python ${{ matrix.python-version }}
7676
uses: actions/setup-python@v6
7777
with:
@@ -94,7 +94,7 @@ jobs:
9494
python-version: ['3.13']
9595

9696
steps:
97-
- uses: actions/checkout@v5
97+
- uses: actions/checkout@v6
9898
- name: Set up Python ${{ matrix.python-version }}
9999
uses: actions/setup-python@v6
100100
with:

.github/workflows/tools.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- name: Install dependencies
2222
run: |
2323
sudo apt-key adv --fetch-keys http://repos.codelite.org/CodeLite.asc
@@ -44,7 +44,7 @@ jobs:
4444
runs-on: macos-13
4545
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
4646
steps:
47-
- uses: actions/checkout@v5
47+
- uses: actions/checkout@v6
4848
- name: Install dependencies
4949
run: brew install automake autoconf wxwidgets
5050
- run: aclocal
@@ -63,7 +63,7 @@ jobs:
6363
runs-on: macos-14
6464
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
6565
steps:
66-
- uses: actions/checkout@v5
66+
- uses: actions/checkout@v6
6767
- name: Install dependencies
6868
run: brew install automake autoconf wxwidgets
6969
- run: aclocal
@@ -85,7 +85,7 @@ jobs:
8585
run:
8686
shell: msys2 {0}
8787
steps:
88-
- uses: actions/checkout@v5
88+
- uses: actions/checkout@v6
8989
- uses: msys2/setup-msys2@v2
9090
with:
9191
install: mingw-w64-x86_64-toolchain make automake autoconf

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: windows-latest
1818

1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- name: Set up Python
2222
uses: actions/setup-python@v6
2323
with:

ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
a node to the null outcome (#625, #647)
1414

1515

16-
## [16.3.2] - unreleased
16+
## [16.3.2] - 2025-12-04
1717

1818
### Fixed
1919
- Parsing of output of `gambit-logit` in the graphical interface did not handle the

contrib/mac/Info.plist

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>16.4.0</string>
22+
<string>16.4.1</string>
2323
<key>CFBundleShortVersionString</key>
24-
<string>16.4.0</string>
24+
<string>16.4.1</string>
2525
<key>CFBundleGetInfoString</key>
26-
<string>Gambit version 16.4.0, (c) 1994-2025 The Gambit Project</string>
26+
<string>Gambit version 16.4.1, (c) 1994-2025 The Gambit Project</string>
2727
<key>CFBundleLongVersionString</key>
28-
<string>16.4.0, (c) 1994-2025 The Gambit Project</string>
28+
<string>16.4.1, (c) 1994-2025 The Gambit Project</string>
2929
<key>NSHumanReadableCopyright</key>
3030
<string>Copyright 1994-2025 The Gambit Project</string>
3131
<key>LSRequiresCarbon</key>

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
# The short X.Y version.
5656
version = "16.4"
5757
# The full version, including alpha/beta/rc tags.
58-
release = "16.4.0"
58+
release = "16.4.1"
5959

6060
# The language for content autogenerated by Sphinx. Refer to documentation
6161
# for a list of supported languages.

doc/tools.convert.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Example invocation for HTML output::
4040

4141
$ gambit-convert -O html 2x2.nfg
4242
Convert games among various file formats
43-
Gambit version 16.4.0, Copyright (C) 1994-2025, The Gambit Project
43+
Gambit version 16.4.1, Copyright (C) 1994-2025, The Gambit Project
4444
This is free software, distributed under the GNU GPL
4545

4646
<center><h1>Two person 2 x 2 game with unique mixed equilibrium</h1></center>
@@ -55,7 +55,7 @@ Example invocation for LaTeX output::
5555

5656
$ gambit-convert -O sgame 2x2.nfg
5757
Convert games among various file formats
58-
Gambit version 16.4.0, Copyright (C) 1994-2025, The Gambit Project
58+
Gambit version 16.4.1, Copyright (C) 1994-2025, The Gambit Project
5959
This is free software, distributed under the GNU GPL
6060

6161
\begin{game}{2}{2}[Player 1][Player 2]

doc/tools.enummixed.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ in Figure 2 of Selten (International Journal of Game Theory,
7070

7171
$ gambit-enummixed e02.nfg
7272
Compute Nash equilibria by enumerating extreme points
73-
Gambit version 16.4.0, Copyright (C) 1994-2025, The Gambit Project
73+
Gambit version 16.4.1, Copyright (C) 1994-2025, The Gambit Project
7474
This is free software, distributed under the GNU GPL
7575

7676
NE,1,0,0,1,0
@@ -82,7 +82,7 @@ information using the `-c` switch::
8282

8383
$ gambit-enummixed -c e02.nfg
8484
Compute Nash equilibria by enumerating extreme points
85-
Gambit version 16.4.0, Copyright (C) 1994-2025, The Gambit Project
85+
Gambit version 16.4.1, Copyright (C) 1994-2025, The Gambit Project
8686
This is free software, distributed under the GNU GPL
8787

8888
NE,1,0,0,1,0

0 commit comments

Comments
 (0)