Skip to content

Commit

Permalink
Bump version to 2.40
Browse files Browse the repository at this point in the history
  • Loading branch information
Andersbakken committed Dec 18, 2020
1 parent 50571af commit a774c80
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 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 39)
set(RTAGS_VERSION_MINOR 40)
set(RTAGS_VERSION_DATABASE 133)
set(RTAGS_VERSION_SOURCES_FILE 15)
set(RTAGS_VERSION ${RTAGS_VERSION_MAJOR}.${RTAGS_VERSION_MINOR}.${RTAGS_VERSION_DATABASE})
Expand Down
8 changes: 4 additions & 4 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.11.
.TH RC "7" "January 2020" "rc 2.38.130" "User Commands"
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
.TH RC "7" "December 2020" "rc 2.40.133" "User Commands"
.SH NAME
rc \- manual page for rc 2.38.130
rc \- manual page for rc 2.40.133
.SH SYNOPSIS
rc [OPTION]...
.SH DESCRIPTION
Expand Down Expand Up @@ -203,7 +203,7 @@ Validate database files for current project.
Dump tokens for file. \fB\-\-tokens\fR file.cpp:123\-321 for range.
.TP
\fB\-\-find\-dead\-functions\fR [optional]
Find functions declared/defined in the current file that are never in the project.
Find functions declared/defined in the current file that are never used in the project.
.SS "Command flags:"
.TP
\fB\-\-strip\-paren\fR|\-p
Expand Down
11 changes: 7 additions & 4 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.11.
.TH RDM "7" "January 2020" "rdm 2.38.130" "User Commands"
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
.TH RDM "7" "December 2020" "rdm 2.40.133" "User Commands"
.SH NAME
rdm \- manual page for rdm 2.38.130
rdm \- manual page for rdm 2.40.133
.SH SYNOPSIS
rdm [OPTION]...
.SH DESCRIPTION
Expand Down Expand Up @@ -195,7 +195,10 @@ Don't strip out \fB\-Wpedantic\fR. This can cause problems in certain projects.
Don't strip out \fB\-Werror\fR and \fB\-Wfatal\-errors\fR. By default these are stripped out.
.TP
\fB\-\-enable\-compiler\-manager\fR|\-R
Query compilers for their actual include paths instead of letting clang use its own.
Query compilers for their actual include paths instead of letting clang use its own. This is now the default. Kept for backwards compatibility.
.TP
\fB\-\-disable\-compiler\-manager\fR
Do not query compilers for their actual include paths instead of letting clang use its own.
.TP
\fB\-\-enable\-NDEBUG\fR|\-g
Don't remove \fB\-DNDEBUG\fR from compile lines.
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]>
;; Package-Requires: ((emacs "24.3"))
;; Version: 2.38.130
;; Version: 2.40.133

;; URL: https://github.com/Andersbakken/rtags
;; This file is not part of GNU Emacs.
Expand Down Expand Up @@ -65,7 +65,7 @@
;; Constants
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defconst rtags-protocol-version 128)
(defconst rtags-package-version "2.38")
(defconst rtags-package-version "2.40")
(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 a774c80

Please sign in to comment.