Browse Source

Update versions.

tags/v2.0.0
Andrew Belt 5 years ago
parent
commit
bbb61d28d7
4 changed files with 6 additions and 6 deletions
  1. +1
    -1
      Core.json
  2. +2
    -2
      Makefile
  3. +1
    -1
      docs/Doxyfile
  4. +2
    -2
      src/app/common.cpp

+ 1
- 1
Core.json View File

@@ -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",


+ 2
- 2
Makefile View File

@@ -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


+ 1
- 1
docs/Doxyfile View File

@@ -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


+ 2
- 2
src/app/common.cpp View File

@@ -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


Loading…
Cancel
Save