diff --git a/CMakeLists.txt b/CMakeLists.txt index b4b8e6b78..59b5ec1e9 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 32) +set(RTAGS_VERSION_MINOR 33) set(RTAGS_VERSION_DATABASE 128) set(RTAGS_VERSION_SOURCES_FILE 15) set(RTAGS_VERSION ${RTAGS_VERSION_MAJOR}.${RTAGS_VERSION_MINOR}.${RTAGS_VERSION_DATABASE}) diff --git a/man/man7/rc.7 b/man/man7/rc.7 index c2e6f1d13..6714dab31 100644 --- a/man/man7/rc.7 +++ b/man/man7/rc.7 @@ -1,7 +1,7 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6. -.TH RC "7" "June 2019" "rc 2.32.128" "User Commands" +.TH RC "7" "June 2019" "rc 2.33.128" "User Commands" .SH NAME -rc \- manual page for rc 2.32.128 +rc \- manual page for rc 2.33.128 .SH SYNOPSIS rc [OPTION]... .SH DESCRIPTION diff --git a/man/man7/rdm.7 b/man/man7/rdm.7 index ea8d5a86d..aa0e6ae74 100644 --- a/man/man7/rdm.7 +++ b/man/man7/rdm.7 @@ -1,7 +1,7 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6. -.TH RDM "7" "June 2019" "rdm 2.32.128" "User Commands" +.TH RDM "7" "June 2019" "rdm 2.33.128" "User Commands" .SH NAME -rdm \- manual page for rdm 2.32.128 +rdm \- manual page for rdm 2.33.128 .SH SYNOPSIS rdm [OPTION]... .SH DESCRIPTION @@ -182,8 +182,8 @@ Log more info about completions. \fB\-\-completion\-diagnostics\fR [optional] Send diagnostics from completion thread. .TP -\fB\-\-rp\-daemon\fR [optional] -Keep rp's alive as daemons and cache the last tu. Default to true +\fB\-\-rp\-daemon\fR [arg] +Keep this many rp daemons alive and cache the last tu. Default to 1 .TP \fB\-\-max\-include\-completion\-depth\fR [arg] Max recursion depth for header completion (default 3). diff --git a/src/rtags.el b/src/rtags.el index 57856e887..aa00d7763 100644 --- a/src/rtags.el +++ b/src/rtags.el @@ -5,7 +5,7 @@ ;; Author: Jan Erik Hanssen ;; Anders Bakken ;; URL: http://rtags.net -;; Version: 2.32.128 +;; Version: 2.33.128 ;; This file is not part of GNU Emacs. @@ -74,7 +74,7 @@ ;; Constants ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defconst rtags-protocol-version 128) -(defconst rtags-package-version "2.32") +(defconst rtags-package-version "2.33") (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 "------------------------------------------")