From 21a9f13980fd710305782867923e83a3aa606f61 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Wed, 4 Oct 2017 21:30:02 -0400 Subject: Release 1.1.3 --- Makefile | 2 +- RELEASES.md | 9 +++++++++ bfs.h | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0704d57..e2d9f43 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ ############################################################################ ifeq ($(wildcard .git),) -VERSION := 1.1.2 +VERSION := 1.1.3 else VERSION := $(shell git describe --always) endif diff --git a/RELEASES.md b/RELEASES.md index ad3c847..42669ff 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -2,6 +2,15 @@ === +1.1.3 +----- + +**October 4, 2017** + +- Refactored the optimizer +- Implemented data flow optimizations + + 1.1.2 ----- diff --git a/bfs.h b/bfs.h index 909e76f..472e376 100644 --- a/bfs.h +++ b/bfs.h @@ -18,7 +18,7 @@ #define BFS_H #ifndef BFS_VERSION -# define BFS_VERSION "1.1.2" +# define BFS_VERSION "1.1.3" #endif #ifndef BFS_HOMEPAGE -- cgit v1.2.3