From bbb61d28d70747bd8fb796b32063079c6d3d17f1 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Thu, 31 Oct 2019 17:43:42 -0400 Subject: [PATCH] Update versions. --- Core.json | 2 +- Makefile | 4 ++-- docs/Doxyfile | 2 +- src/app/common.cpp | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Core.json b/Core.json index ef21b7c8..934df743 100644 --- a/Core.json +++ b/Core.json @@ -1,7 +1,7 @@ { "slug": "Core", "name": "Core", - "version": "1.1.6", + "version": "2.0.0", "license": "GPL-3.0-only", "author": "VCV", "brand": "VCV", diff --git a/Makefile b/Makefile index 2b21b44f..c770ea7b 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ RACK_DIR ?= . -VERSION := 1.dev.$(shell git rev-parse --short HEAD) -# VERSION := 1.1.6 +VERSION := 2.dev.$(shell git rev-parse --short HEAD) +# VERSION := 2.0.0 FLAGS += -DVERSION=$(VERSION) FLAGS += -Iinclude -Idep/include diff --git a/docs/Doxyfile b/docs/Doxyfile index 19b60a40..53c4ae7e 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "VCV Rack API" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = v1 +PROJECT_NUMBER = v2 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/src/app/common.cpp b/src/app/common.cpp index 418ee105..76f2e040 100644 --- a/src/app/common.cpp +++ b/src/app/common.cpp @@ -15,10 +15,10 @@ const std::string APP_VERSION = TOSTRING(VERSION); const std::string APP_ARCH = "lin"; #endif -const std::string ABI_VERSION = "1"; +const std::string ABI_VERSION = "2"; const std::string API_URL = "https://api.vcvrack.com"; -const std::string API_VERSION = "1"; +const std::string API_VERSION = "2"; } // namespace app