Skip to content

Commit 98f7b43

Browse files
committed
Update the copyright year and the version number
1 parent cd6ee02 commit 98f7b43

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PackCC: a packrat parser generator for C.
22

3-
Copyright (c) 2014, 2019-2024 Arihiro Yoshida. All rights reserved.
3+
Copyright (c) 2014, 2019-2025 Arihiro Yoshida. All rights reserved.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

src/packcc.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* PackCC: a packrat parser generator for C.
33
*
4-
* Copyright (c) 2014, 2019-2024 Arihiro Yoshida. All rights reserved.
4+
* Copyright (c) 2014, 2019-2025 Arihiro Yoshida. All rights reserved.
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal
@@ -128,7 +128,7 @@ DECLSPEC_IMPORT HRESULT WINAPI SHGetFolderPathA(HWND hwnd, int csidl, HANDLE hTo
128128

129129
#define WEBSITE "https://github.com/arithy/packcc"
130130

131-
#define VERSION "2.1.0"
131+
#define VERSION "2.2.0"
132132

133133
#ifndef BUFFER_MIN_SIZE
134134
#define BUFFER_MIN_SIZE 256
@@ -5685,7 +5685,7 @@ static bool_t generate(context_t *ctx) {
56855685

56865686
static void print_version(FILE *output) {
56875687
fprintf(output, "%s version %s\n", g_cmdname, VERSION);
5688-
fprintf(output, "Copyright (c) 2014, 2019-2024 Arihiro Yoshida. All rights reserved.\n");
5688+
fprintf(output, "Copyright (c) 2014, 2019-2025 Arihiro Yoshida. All rights reserved.\n");
56895689
}
56905690

56915691
static void print_usage(FILE *output) {

0 commit comments

Comments
 (0)