Skip to content

Commit

Permalink
Bump version to 2.21
Browse files Browse the repository at this point in the history
  • Loading branch information
casch-at committed Nov 24, 2018
1 parent 4144eee commit 1249950
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 2.8.6)
project(rtags)
set(RTAGS_VERSION_MAJOR 2)
set(RTAGS_VERSION_MINOR 20)
set(RTAGS_VERSION_MINOR 21)
set(RTAGS_VERSION_DATABASE 126)
set(RTAGS_VERSION_SOURCES_FILE 14)
set(RTAGS_VERSION ${RTAGS_VERSION_MAJOR}.${RTAGS_VERSION_MINOR}.${RTAGS_VERSION_DATABASE})
Expand Down
6 changes: 3 additions & 3 deletions man/man7/rc.7
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
.TH RC "7" "July 2018" "rc 2.18.126" "User Commands"
.TH RC "7" "November 2018" "rc 2.21.126" "User Commands"
.SH NAME
rc \- manual page for rc 2.18.126
rc \- manual page for rc 2.21.126
.SH SYNOPSIS
rc [OPTION]...
.SH DESCRIPTION
Expand All @@ -15,7 +15,7 @@ Be more verbose.
\fB\-\-version\fR
Print current version.
.TP
\fB\-\-verify\-version\fR [arg]
\fB\-\-verify\-version\fR|\-t [arg]
Verify that the correct protocol version is used.
.TP
\fB\-\-silent\fR|\-Q
Expand Down
16 changes: 8 additions & 8 deletions man/man7/rdm.7
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
.TH RDM "7" "July 2018" "rdm 2.18.126" "User Commands"
.TH RDM "7" "November 2018" "rdm 2.21.126" "User Commands"
.SH NAME
rdm \- manual page for rdm 2.18.126
rdm \- manual page for rdm 2.21.126
.SH SYNOPSIS
rdm [OPTION]...
.SH DESCRIPTION
Expand Down Expand Up @@ -72,12 +72,12 @@ Change verbosity, multiple \fB\-v\fR's are allowed.
\fB\-\-job\-count\fR|\-j [arg]
Spawn this many concurrent processes for indexing.
.TP
\fB\-\-header\-error\-job\-count\fR|\-H [arg]
Allow this many concurrent header error jobs (default std::max(1, \fB\-\-job\-count\fR / 2)).
.TP
\fB\-\-test\fR|\-t [arg]
Run this test.
.TP
\fB\-\-tempdir\fR [arg]
Use this directory for temporary files. Clang generates a lot of these and rtags will periodically clean out this directory. Default is $TMPDIR/rtags/
.TP
\fB\-\-test\-timeout\fR|\-z [arg]
Timeout for test to complete.
.TP
Expand Down Expand Up @@ -179,6 +179,9 @@ Don't filter private members and destructors from completions.
\fB\-\-completion\-logs\fR
Log more info about completions.
.TP
\fB\-\-completion\-diagnostics\fR
Send diagnostics from completion thread.
.TP
\fB\-\-max\-include\-completion\-depth\fR [arg]
Max recursion depth for header completion (default 3).
.TP
Expand Down Expand Up @@ -221,9 +224,6 @@ Use arg to transform arguments. [arg] should be executable with (execv(3)).
\fB\-\-no\-comments\fR
Don't parse/store doxygen comments.
.TP
\fB\-\-launchd\fR
Run as a launchd job (use launchd API to retrieve socket opened by launchd on rdm's behalf).
.TP
\fB\-\-inactivity\-timeout\fR [arg]
Time in seconds after which rdm will quit if there's been no activity (N.B., once rdm has quit, something will need to re\-run it!).
.TP
Expand Down
4 changes: 2 additions & 2 deletions src/rtags.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
;; Author: Jan Erik Hanssen <[email protected]>
;; Anders Bakken <[email protected]>
;; URL: http://rtags.net
;; Version: 2.10
;; Version: 2.21

;; This file is not part of GNU Emacs.

Expand Down Expand Up @@ -73,7 +73,7 @@
;; Constants
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defconst rtags-protocol-version 127)
(defconst rtags-package-version "2.20")
(defconst rtags-package-version "2.21")
(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 "------------------------------------------")
Expand Down

0 comments on commit 1249950

Please sign in to comment.