Skip to content

Commit 65505ae

Browse files
committed
Bump 4.0.0
1 parent a962723 commit 65505ae

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
strategy:
1010
matrix:
1111
include:
12-
- os: ubuntu-20.04
13-
name: ubuntu_20
14-
pypi: yes
1512
- os: ubuntu-22.04
1613
name: ubuntu_22
14+
pypi: yes
15+
- os: ubuntu-24.04
16+
name: ubuntu_24
1717
- os: macos-latest
1818
name: macos
1919
- os: windows-latest

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ jobs:
88
matrix:
99
include:
1010
# Ubuntu
11-
- os: ubuntu-20.04
11+
- os: ubuntu-22.04
1212
python-version: "3.8"
1313
pyinstaller: yes
14-
- os: ubuntu-20.04
14+
- os: ubuntu-22.04
1515
python-version: "3.9"
16-
- os: ubuntu-20.04
16+
- os: ubuntu-22.04
1717
python-version: "3.10"
18-
- os: ubuntu-20.04
18+
- os: ubuntu-22.04
1919
python-version: "3.11"
20-
- os: ubuntu-20.04
20+
- os: ubuntu-22.04
2121
python-version: "3.12"
2222

2323
# Mac

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 4.0.0 (provisional)
3+
## 4.0.0
44

55
*Breaking*
66

@@ -9,6 +9,7 @@
99

1010
*Features*
1111

12+
- Adding `bluesky` commands.
1213
- Adding `reddit` commands.
1314
- Adding `image` and `pagetype` features to `minet extract` outputs.
1415

minet/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "3.2.0"
2-
__published__ = "2024-12-18"
1+
__version__ = "4.0.0"
2+
__published__ = "2025-02-19"
33
__identifier__ = "%s (%s)" % (__version__, __published__)

scripts/install.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,18 +73,18 @@ if [[ $(uname -s) == "Darwin" ]]; then
7373
os="macos"
7474
echo "Installing minet for mac..."
7575
elif cat /etc/os-release | grep -q "Debian GNU/Linux"; then
76-
os="ubuntu_20"
76+
os="ubuntu_22"
7777
echo "Installing minet for debian..."
7878
else
7979
ubuntu_version=$(get_ubuntu_version)
8080

8181
if [[ $ubuntu_version != "unknown" ]]; then
8282
echo "Installing minet for ubuntu $ubuntu_version (or similar)..."
8383

84-
if [[ $ubuntu_version -le "20" ]]; then
85-
os="ubuntu_20"
86-
else
84+
if [[ $ubuntu_version -le "22" ]]; then
8785
os="ubuntu_22"
86+
else
87+
os="ubuntu_24"
8888
fi
8989
else
9090
fail_install

0 commit comments

Comments
 (0)