Skip to content

Commit 06deae2

Browse files
committed
support up to fedora 40 and ubuntu nobal, bump version number
1 parent 31232a0 commit 06deae2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ jobs:
4646
PACKAGECLOUD_REPO="cs50/repo"
4747
4848
# Deploy deb to ubuntu repos
49-
UBUNTU_REPOS=( xenial yakkety zesty artful bionic cosmic disco eoan focal groovy hirsute impish jammy kinetic lunar )
49+
UBUNTU_REPOS=( xenial yakkety zesty artful bionic cosmic disco eoan focal groovy hirsute impish jammy kinetic lunar noble )
5050
for repo in "${UBUNTU_REPOS[@]}"; do
5151
package_cloud push "$PACKAGECLOUD_REPO"/ubuntu/"$repo" ${PWD}/artifacts/*.deb
5252
done
5353
5454
# Deploy rpm to fedora repos
55-
for repo in $(seq 28 38); do
55+
for repo in $(seq 28 40); do
5656
package_cloud push "$PACKAGECLOUD_REPO"/fedora/"$repo" ${PWD}/artifacts/*.rpm
5757
done
5858
env:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION := 11.0.2
1+
VERSION := 11.0.3
22
MAJOR_VERSION := $(shell echo $(VERSION) | cut -d'.' -f1)
33

44
# installation directory (/usr/local by default)

0 commit comments

Comments
 (0)