Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated releases, version, and year #290

Merged
merged 4 commits into from
May 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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