Skip to content

Commit 8c2d405

Browse files
committed
Bump the version to 0.674
1 parent e46d70d commit 8c2d405

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

Manifesto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ First I'll tell you how to download or build Fil-C and then I'll tell you how to
113113

114114
You can download a Fil-C binary release from [https://github.com/pizlonator/fil-c/releases](https://github.com/pizlonator/fil-c/releases).
115115

116-
Then, in the filc-0.673-linux-x86_64 directory, run:
116+
Then, in the filc-0.674-linux-x86_64 directory, run:
117117

118118
./setup.sh
119119

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Fil-C 0.673
1+
# Fil-C 0.674
22

33
Fil-C is a fanatically compatible memory-safe implementation of C and C++. Lots
44
of software compiles and runs with Fil-C with zero or minimal changes. All
@@ -69,11 +69,11 @@ This has a different effect depending on which binary distribution you
6969
selected:
7070

7171
- In case of the classic musl-based distribution
72-
(`filc-0.673-linux-x86_64.tar.xz`), this sets up Fil-C to run in the current
72+
(`filc-0.674-linux-x86_64.tar.xz`), this sets up Fil-C to run in the current
7373
directory.
7474

7575
- In case of the /opt/fil glibc-based distribution
76-
(`optfil-0.673-linux-x86_64.tar.xz`), this sets up Fil-C in `/opt/fil`.
76+
(`optfil-0.674-linux-x86_64.tar.xz`), this sets up Fil-C in `/opt/fil`.
7777

7878
If you downloaded Fil-C source, run:
7979

clang/lib/Basic/Version.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ std::string getLLVMRevision() {
5858
}
5959

6060
std::string getClangVendor() {
61-
return "Fil-C 0.673 ";
61+
return "Fil-C 0.674 ";
6262
}
6363

6464
std::string getClangFullRepositoryVersion() {

filc/include/stdfil.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ extern "C" {
3636

3737
/* The convention is that the major version gets multiplied by 10000. So if there was a version
3838
1.23, then FILC_VERSION would be 10023. */
39-
#define FILC_VERSION 673u
39+
#define FILC_VERSION 674u
4040

4141
/* This header defines standard Fil-C APIs that are not part of C or C++ but are intended to be stable
4242
over time in Fil-C.

optfil/build_finish.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ cd $FILCSRC/optfil
4343

4444
. ../libpas/common.sh
4545

46-
package_name=optfil-0.673-$OS-$ARCH
46+
package_name=optfil-0.674-$OS-$ARCH
4747

4848
rm -rf $package_name
4949
mkdir -v $package_name
@@ -76,7 +76,7 @@ cp -v audit-LICENSE.txt $package_name/
7676
cp -v PAM-LICENSE.txt $package_name/
7777
cp -v keyutils-LICENSE.txt $package_name/
7878
cp -v krb5-LICENSE.txt $package_name/
79-
cp -v libsepol-LICSENSE.txt $package_name/
79+
cp -v libsepol-LICENSE.txt $package_name/
8080
cp -v libselinux-LICENSE.txt $package_name/
8181

8282
tar -cJf $package_name.tar.xz $package_name

optfil/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
set -e
2727

28-
VERSION="0.673"
28+
VERSION="0.674"
2929

3030
echo "================================================================================"
3131
echo " Fil-C /opt/fil Distribution"

package-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
set -e
2929
set -x
3030

31-
build_name=filc-0.673-$OS-$ARCH
31+
build_name=filc-0.674-$OS-$ARCH
3232

3333
rm -rf $build_name
3434

0 commit comments

Comments
 (0)