Skip to content

Commit

Permalink
Merge pull request #290 from cs50/new-release
Browse files Browse the repository at this point in the history
Updated releases, version, and year
  • Loading branch information
rongxin-liu authored May 2, 2023
2 parents c5bead0 + bf29ed7 commit c8b9733
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
--volume "${PWD}/artifacts:/artifacts" \
--volume "${GITHUB_WORKSPACE}:${GITHUB_WORKSPACE}" \
--workdir "${GITHUB_WORKSPACE}" \
arm64v8/ubuntu:20.04 \
arm64v8/ubuntu:22.04 \
/bin/bash -c \
"apt-get update && \
apt-get -qq install -y build-essential gem rpm ruby-full && \
Expand All @@ -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 kinetic 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:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION := 11.0.1
VERSION := 11.0.2
MAJOR_VERSION := $(shell echo $(VERSION) | cut -d'.' -f1)

# installation directory (/usr/local by default)
Expand Down
4 changes: 2 additions & 2 deletions src/cs50.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion src/cs50.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c8b9733

Please sign in to comment.