diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index dc70bf9..06e35f3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -46,13 +46,13 @@ jobs: PACKAGECLOUD_REPO="cs50/repo" # Deploy deb to ubuntu repos - UBUNTU_REPOS=( xenial yakkety zesty artful bionic cosmic disco eoan focal groovy hirsute impish jammy ) + UBUNTU_REPOS=( xenial yakkety zesty artful bionic cosmic disco eoan focal groovy hirsute impish jammy lunar ) for repo in "${UBUNTU_REPOS[@]}"; do package_cloud push "$PACKAGECLOUD_REPO"/ubuntu/"$repo" ${PWD}/artifacts/*.deb done # Deploy rpm to fedora repos - for repo in $(seq 28 36); do + for repo in $(seq 28 39); do package_cloud push "$PACKAGECLOUD_REPO"/fedora/"$repo" ${PWD}/artifacts/*.rpm done env: diff --git a/Makefile b/Makefile index f809bf4..cf35541 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 11.0.1 +VERSION := 12.0.0 MAJOR_VERSION := $(shell echo $(VERSION) | cut -d'.' -f1) # installation directory (/usr/local by default) diff --git a/src/cs50.c b/src/cs50.c index 0dd12b9..728fbfa 100644 --- a/src/cs50.c +++ b/src/cs50.c @@ -4,7 +4,7 @@ * * Based on Eric Roberts' genlib.c and simpio.c. * - * Copyright (c) 2022 + * Copyright (c) 2023 * All rights reserved * * BSD 3-Clause License @@ -52,7 +52,7 @@ #include "cs50.h" -// Disable warnings from some compilers about the way we use variadic arguments +// Disable warnings from some compilers about the way we use variadic arguments #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wformat-security" diff --git a/src/cs50.h b/src/cs50.h index 5589d1a..fc58db5 100644 --- a/src/cs50.h +++ b/src/cs50.h @@ -4,7 +4,7 @@ * * Based on Eric Roberts' genlib.c and simpio.c. * - * Copyright (c) 2022 + * Copyright (c) 2023 * All rights reserved * * BSD 3-Clause License