add a CHANGELOG file and complete the release 1.1.0 v1.1.0

Mon, 11 Aug 2025 20:21:04 +0200

author
Mike Becker <universe@uap-core.de>
date
Mon, 11 Aug 2025 20:21:04 +0200
changeset 65
ff03ae99323f
parent 64
cfaddbb6caab
child 66
16b2313dd96f

add a CHANGELOG file and complete the release 1.1.0

CHANGELOG file | annotate | diff | comparison | revisions
Makefile file | annotate | diff | comparison | revisions
src/main.cpp file | annotate | diff | comparison | revisions
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CHANGELOG	Mon Aug 11 20:21:04 2025 +0200
@@ -0,0 +1,11 @@
+Version 1.1.0 - 2025-08-11
+
+ - Add highlight for days with tags
+ - Add Pop-up showing commit messages and tags
+ - Add id attributes to HTML elements so that users can add features with Javascript
+ - Add total number of commits per month as tooltip for the month
+ - Add total number of commits per year as tooltip for the author
+
+Version 1.0.0 - 2025-02-18
+
+ - Initial release
--- a/Makefile	Mon Aug 11 20:06:28 2025 +0200
+++ b/Makefile	Mon Aug 11 20:21:04 2025 +0200
@@ -21,14 +21,15 @@
 # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
-VERSION=1.1.0-dev
+VERSION=1.1.0
 
 all: compile FORCE
 
 dist: FORCE
 	mkdir -p dist/repoheat
-	cp LICENSE README configure Makefile dist/repoheat/
+	cp LICENSE README CHANGELOG configure Makefile dist/repoheat/
 	cp -R src dist/repoheat/
+	cp -R make dist/repoheat/
 	cd dist && tar -czf repoheat-$(VERSION).tar.gz repoheat
 
 clean: FORCE
--- a/src/main.cpp	Mon Aug 11 20:06:28 2025 +0200
+++ b/src/main.cpp	Mon Aug 11 20:21:04 2025 +0200
@@ -38,7 +38,7 @@
 
 using namespace std::chrono;
 
-static constexpr auto program_version = "1.1.0 (dev)";
+static constexpr auto program_version = "1.1.0";
 
 static void print_help() {
     fputs(

mercurial