Skip to content

Commit

Permalink
updated releases, version, and year
Browse files Browse the repository at this point in the history
  • Loading branch information
rongxin-liu committed Apr 29, 2023
1 parent c5bead0 commit bdc733e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
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 := 12.0.0
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"

This comment was marked as abuse.

Copy link
@ZaidAjo

ZaidAjo Jun 25, 2024

wdAS

This comment was marked as abuse.

Copy link
@ZaidAjo

ZaidAjo Jun 25, 2024

SFFDVDFDCvDC


// 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 bdc733e

Please sign in to comment.