Skip to content
This repository has been archived by the owner on Mar 16, 2021. It is now read-only.

Commit

Permalink
version: Bump files to 0.5.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacky Alciné committed Dec 12, 2014
1 parent 78288e0 commit 4476a3a
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![Stories in Ready][waffle:img])][waffle:link]
# [CMake Interoperability in Vim][site]

[`cmake.vim 0.5.x`][release] is a Vim plugin that aims to bind [CMake][cmake]
[`cmake.vim 0.5.0`][release] is a Vim plugin that aims to bind [CMake][cmake]
within Vim for your CMake-based projects. This project has not reached a 1.0.0
release and thus isn't fully ready for production.

Expand Down
2 changes: 1 addition & 1 deletion autoload/cmake/augroup.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
" Author: Jacky Alciné <[email protected]>
" License: MIT
" Website: https://jalcine.github.io/cmake.vim
" Version: 0.5.x
" Version: 0.5.0

function s:add_specific_buffer_commands()
call cmake#commands#apply_buffer_commands()
Expand Down
2 changes: 1 addition & 1 deletion autoload/cmake/buffer.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
" Author: Jacky Alciné <[email protected]>
" License: MIT
" Website: https://jalcine.github.io/cmake.vim
" Version: 0.5.x
" Version: 0.5.0

" Public Function: cmake#buffer#has_project
" Checks if the current buffer follows the following criteria:
Expand Down
2 changes: 1 addition & 1 deletion autoload/cmake/cache.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
" Author: Jacky Alciné <[email protected]>
" License: MIT
" Website: https://jalcine.github.io/cmake.vim
" Version: 0.5.x
" Version: 0.5.0

function! cmake#cache#read_all()
let l:vars_strings = readfile(cmake#util#binary_dir() . '/CMakeCache.txt')
Expand Down
2 changes: 1 addition & 1 deletion autoload/cmake/commands.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
" Author: Jacky Alciné <[email protected]>
" License: MIT
" Website: https://jalcine.github.io/cmake.vim
" Version: 0.5.x
" Version: 0.5.0

function! cmake#commands#build()
call cmake#util#echo_msg('Building all targets...')
Expand Down
2 changes: 1 addition & 1 deletion autoload/cmake/ctags.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
" Author: Jacky Alciné <[email protected]>
" License: MIT
" Website: https://jalcine.github.io/cmake.vim
" Version: 0.5.x
" Version: 0.5.0

func s:get_tags()
return &l:tags
Expand Down
2 changes: 1 addition & 1 deletion autoload/cmake/extension.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
" Author: Jacky Alciné <[email protected]>
" License: MIT
" Website: https://jalcine.github.io/cmake.vim
" Version: 0.5.x
" Version: 0.5.0

" A lot of magic happening here; that magic behind interpolation.
func! s:get_default_ext(class, type)
Expand Down
2 changes: 1 addition & 1 deletion autoload/cmake/extension/dispatch.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
" Author: Jacky Alciné <[email protected]>
" License: MIT
" Website: https://jalcine.github.io/cmake.vim
" Version: 0.5.x
" Version: 0.5.0

func! cmake#extension#dispatch#sync(command)
execute 'Dispatch "' . a:command . '"<CR>'
Expand Down
2 changes: 1 addition & 1 deletion autoload/cmake/extension/gnumake.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
" Author: Jacky Alciné <[email protected]>
" License: MIT
" Website: https://jalcine.github.io/cmake.vim
" Version: 0.5.x
" Version: 0.5.0

function! s:parse_target_depends(dependInfoCMakeFilePath, target)
let l:bindir = cmake#targets#binary_dir(a:target)
Expand Down
2 changes: 1 addition & 1 deletion autoload/cmake/extension/ninja.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
" Author: Jacky Alciné <[email protected]>
" License: MIT
" Website: https://jalcine.github.io/cmake.vim
" Version: 0.5.x
" Version: 0.5.0

function! s:read_target_from_ninja(target)
let l:bindir = cmake#util#binary_dir()
Expand Down
2 changes: 1 addition & 1 deletion autoload/cmake/extension/syntastic.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
" Author: Jacky Alciné <[email protected]>
" License: MIT
" Website: https://jalcine.github.io/cmake.vim
" Version: 0.5.x
" Version: 0.5.0

func! cmake#extension#syntastic#inject(args)
let l:target = args['target']
Expand Down
2 changes: 1 addition & 1 deletion autoload/cmake/extension/vim.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
" Author: Jacky Alciné <[email protected]>
" License: MIT
" Website: https://jalcine.github.io/cmake.vim
" Version: 0.5.x
" Version: 0.5.0

func! cmake#extension#vim#sync(command)
let l:output = system(a:command)
Expand Down
2 changes: 1 addition & 1 deletion autoload/cmake/extension/vimux.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
" Author: Jacky Alciné <[email protected]>
" License: MIT
" Website: https://jalcine.github.io/cmake.vim
" Version: 0.5.x
" Version: 0.5.0

func! cmake#extension#vimux#sync(command)
call VimuxRunCommand(a:command)
Expand Down
2 changes: 1 addition & 1 deletion autoload/cmake/extension/ycm.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
" Author: Jacky Alciné <[email protected]>
" License: MIT
" Website: https://jalcine.github.io/cmake.vim
" Version: 0.5.x
" Version: 0.5.0

func! cmake#extension#ycm#inject(args)
if !exists('g:ycm_extra_conf_vim_data')
Expand Down
2 changes: 1 addition & 1 deletion autoload/cmake/makeprg.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
" Author: Jacky Alciné <[email protected]>
" License: MIT
" Website: https://jalcine.github.io/cmake.vim
" Version: 0.5.x
" Version: 0.5.0

function cmake#makeprg#for_target(target)
if !cmake#targets#exists(a:target)
Expand Down
2 changes: 1 addition & 1 deletion autoload/cmake/path.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
" Author: Jacky Alciné <[email protected]>
" License: MIT
" Website: https://jalcine.github.io/cmake.vim
" Version: 0.5.x
" Version: 0.5.0

let s:failsafe_path="/usr/include,/usr/local/include,."

Expand Down
2 changes: 1 addition & 1 deletion autoload/cmake/targets.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
" Author: Jacky Alciné <[email protected]>
" License: MIT
" Website: https://jalcine.github.io/cmake.vim
" Version: 0.5.x
" Version: 0.5.0

func! cmake#targets#build(target)
return cmake#util#run_cmake("--build " . cmake#util#binary_dir() .
Expand Down
2 changes: 1 addition & 1 deletion autoload/cmake/util.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
" Author: Jacky Alciné <[email protected]>
" License: MIT
" Website: https://jalcine.github.io/cmake.vim
" Version: 0.5.x
" Version: 0.5.0

" Documentation: Local documentation.
" Documentation: In doc/cmake.txt
Expand Down
2 changes: 1 addition & 1 deletion plugin/cmake.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
" Author: Jacky Alciné <[email protected]>
" License: MIT
" Website: https://jalcine.github.io/cmake.vim
" Version: 0.5.x
" Version: 0.5.0

if exists('g:loaded_cmake')
finish
Expand Down

0 comments on commit 4476a3a

Please sign in to comment.