Skip to content

Commit

Permalink
Update base64url version
Browse files Browse the repository at this point in the history
  • Loading branch information
babelouest committed Mar 9, 2022
1 parent 02ed925 commit 5121d36
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion tools/base64url/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Makefile used to build the software
#
# Copyright 2021 Nicolas Mora <[email protected]>
# Copyright 2021-2022 Nicolas Mora <[email protected]>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU GENERAL PUBLIC LICENSE
Expand Down
2 changes: 1 addition & 1 deletion tools/base64url/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# base64url: Base64Url encode or decode FILE, or standard input, to standard output.

Copyright 2021 Nicolas Mora <[email protected]>
Copyright 2021-2022 Nicolas Mora <[email protected]>

This program is free software; you can redistribute it and/or modify it under the terms of the GPL3 License.

Expand Down
10 changes: 5 additions & 5 deletions tools/base64url/base64url.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.8.
.TH BASE64URL "1" "February 2021" "base64url 0.7" "User Commands"
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.48.1.
.TH BASE64URL "1" "March 2022" "base64url 0.9" "User Commands"
.SH NAME
base64url \- Base64Url encode or decode FILE, or standard input, to standard output.
.SH SYNOPSIS
Expand All @@ -8,9 +8,9 @@ base64url \- Base64Url encode or decode FILE, or standard input, to standard out
.SH DESCRIPTION
base64url \- Base64Url encode or decode FILE, or standard input, to standard output.
.PP
Version 0.7
Version 0.9
.SH COPYRIGHT
Copyright 2021 Nicolas Mora <[email protected]>
Copyright 2021\-2022 Nicolas Mora <[email protected]>
.PP
This program is free software; you can redistribute it and/or
modify it under the terms of the GPL 3
Expand Down Expand Up @@ -43,7 +43,7 @@ display this help and exit
output version information and exit
.PP
.br
Copyright 2021 Nicolas Mora <[email protected]>
Copyright 2021\-2022 Nicolas Mora <[email protected]>
This program is free software; you can redistribute it and/or
modify it under the terms of the GPL 3
.SH "SEE ALSO"
Expand Down
8 changes: 4 additions & 4 deletions tools/base64url/base64url.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* base64url: Base64Url encode or decode FILE, or standard input, to standard output.
*
* Copyright 2021 Nicolas Mora <[email protected]>
* Copyright 2021-2022 Nicolas Mora <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU GENERAL PUBLIC LICENSE
Expand All @@ -26,7 +26,7 @@
#include <ctype.h>
#include <orcania.h>

#define _BASE64URL_VERSION "0.7"
#define _BASE64URL_VERSION "0.9"

#define ACTION_ENCODE 0
#define ACTION_DECODE 1
Expand All @@ -51,7 +51,7 @@ static void print_help(FILE * output, const char * command) {
fprintf(output, "\n");
fprintf(output, "Version %s\n", _BASE64URL_VERSION);
fprintf(output, "\n");
fprintf(output, "Copyright 2021 Nicolas Mora <[email protected]>\n");
fprintf(output, "Copyright 2021-2022 Nicolas Mora <[email protected]>\n");
fprintf(output, "\n");
fprintf(output, "This program is free software; you can redistribute it and/or\n");
fprintf(output, "modify it under the terms of the GPL 3\n");
Expand Down Expand Up @@ -157,7 +157,7 @@ int main(int argc, char ** argv) {
break;
case 'v':
fprintf(stdout, "%s %s\n", argv[0], _BASE64URL_VERSION);
fprintf(stdout, "Copyright 2021 Nicolas Mora <[email protected]>\n");
fprintf(stdout, "Copyright 2021-2022 Nicolas Mora <[email protected]>\n");
fprintf(stdout, "This program is free software; you can redistribute it and/or\n");
fprintf(stdout, "modify it under the terms of the GPL 3\n");
exit_loop = 1;
Expand Down

0 comments on commit 5121d36

Please sign in to comment.