From 50bee2ec27e159076468b4c48633e28dd3726c34 Mon Sep 17 00:00:00 2001 From: Anders Bakken Date: Sun, 29 Jul 2018 23:54:14 -0700 Subject: [PATCH] Bump version to 2.19 --- CMakeLists.txt | 2 +- README.org | 4 ++-- src/rtags.el | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5fe805647..c44b0f428 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 2.8.6) project(rtags) set(RTAGS_VERSION_MAJOR 2) -set(RTAGS_VERSION_MINOR 18) +set(RTAGS_VERSION_MINOR 19) set(RTAGS_VERSION_DATABASE 126) set(RTAGS_VERSION_SOURCES_FILE 14) set(RTAGS_VERSION ${RTAGS_VERSION_MAJOR}.${RTAGS_VERSION_MINOR}.${RTAGS_VERSION_DATABASE}) diff --git a/README.org b/README.org index 547c47d77..fdbf555e0 100644 --- a/README.org +++ b/README.org @@ -191,11 +191,11 @@ sudo port install clang-3.5 You can also download the sources from here: - https://andersbakken.github.io/rtags-releases/rtags-2.18.tar.bz2 + https://andersbakken.github.io/rtags-releases/rtags-2.19.tar.bz2 or - https://andersbakken.github.io/rtags-releases/rtags-2.18.tar.gz + https://andersbakken.github.io/rtags-releases/rtags-2.19.tar.gz - Building RTags diff --git a/src/rtags.el b/src/rtags.el index ca7fb412d..8d9c658ab 100644 --- a/src/rtags.el +++ b/src/rtags.el @@ -71,7 +71,7 @@ ;; Constants ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defconst rtags-protocol-version 127) -(defconst rtags-package-version "2.18") +(defconst rtags-package-version "2.19") (defconst rtags-popup-available (require 'popup nil t)) (defconst rtags-supported-major-modes '(c-mode c++-mode objc-mode) "Major modes RTags supports.") (defconst rtags-verbose-results-delimiter "------------------------------------------")