From 99d53b31a02ef8eb6b13fd24b3a0e5ca9efeb827 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Sat, 13 Jan 2024 04:22:34 +0400 Subject: [PATCH] Version was set to 3.1.1, and a year got incremented. --- LICENSE | 2 +- Makefile | 2 +- build/PKGBUILD | 2 +- main.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LICENSE b/LICENSE index ffb5a7c..c881ae6 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2021-2023 Alexander "Arav" Andreev +Copyright (c) 2021-2024 Alexander "Arav" Andreev Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/Makefile b/Makefile index c630cab..137d58d 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ SYSDDIR=${SYSDDIR_:/%=%} DESTDIR:= PREFIX:=/usr/local -VERSION:=3.1.0 +VERSION:=3.1.1 FLAGS:=-buildmode=pie -modcacherw -mod=readonly -trimpath LDFLAGS=-ldflags "-s -w -X main.version=${VERSION}" -tags netgo diff --git a/build/PKGBUILD b/build/PKGBUILD index d2d43f3..166ea78 100644 --- a/build/PKGBUILD +++ b/build/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Alexander "Arav" Andreev pkgname=httpprocprobed -pkgver=3.1.0 +pkgver=3.1.1 pkgrel=1 pkgdesc="HTTPProcProbeD hands out an HTTP endpoint to get if processes are running." arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') diff --git a/main.go b/main.go index d569b78..58c4f2d 100644 --- a/main.go +++ b/main.go @@ -46,7 +46,7 @@ func main() { flag.Parse() if *showVersion { - fmt.Fprintln(os.Stderr, "httpprocprobed ver.", version, "\nCopyright (c) 2021-2023 Alexander \"Arav\" Andreev ") + fmt.Fprintln(os.Stderr, "httpprocprobed ver.", version, "\nCopyright (c) 2021-2024 Alexander \"Arav\" Andreev ") os.Exit(0) }