File tree Expand file tree Collapse file tree 2 files changed +73
-0
lines changed Expand file tree Collapse file tree 2 files changed +73
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ version: tba
3
+ date: tba
4
+ changes:
5
+ - url: correct path also when not in top level directory
6
+ - Changed pr-queue to use the search API making it faster
7
+ - Added pr-created, pr-involves
8
+ - members command accepts --raw option
9
+ - Content typed into the editor will be preserved for later in case
10
+ of an error
11
+ - Added config-list, config-keys
12
+ - Improved bash completion
13
+ - fork: fix url for forked repo
14
+ - pr-new: fix --parent bug
15
+ - deprecate `init`, switch to `.rc`
16
+ - new commands: search-repo, search-user, search-issues
17
+ ---
18
+ version: 0.1.5.12
19
+ date: 2015-12-31
20
+ changes:
21
+ - orgs lists private orgs now also
22
+ - Added gist commands
23
+ - Input checks improved
24
+ - Completion fix
25
+ - Bash fixes
26
+ ---
27
+ version: 0.1.5.09
28
+ date: 2015-09-30
29
+ changes:
30
+ - Support Two-factor authentication
31
+ - Allow to configure github-{email,name} for cloning
32
+ - Doc fixes
33
+ - Bash fixes
34
+ - Completion fix
35
+ ---
36
+ version: 0.1.5.06
37
+ date: 2015-06-30
38
+ changes:
39
+ - Fix for windows (issue #161)
40
+ - Config directory only readable by user
41
+ - Pipe help to pager
42
+ - Improved zsh completion
43
+ - Doc fixes
44
+ ---
45
+ version: 0.1.5
46
+ date: 2015-01-07
47
+ changes:
48
+ - New CPAN release for 2015
49
+ ---
50
+ version: 0.1.4
51
+ date: 2014-09-04
52
+ changes:
53
+ - Lots of improvement
54
+ - pull-* commands are now pr-*
55
+ ---
56
+ version: 0.1.0
57
+ date: 2014-07-28
58
+ changes:
59
+ - First version
Original file line number Diff line number Diff line change
1
+ # !/usr/bin/env perl
2
+
3
+ use strict;
4
+ use warnings;
5
+ use Test::More tests => 1;
6
+ use FindBin ' $Bin' ;
7
+
8
+ my $yaml = eval " use YAML::XS; 1" ;
9
+
10
+ SKIP: {
11
+ skip " YAML::XS not installed" , 1 unless $yaml ;
12
+ my $data = YAML::XS::LoadFile(" $Bin /../Changes" );
13
+ isnt($data , undef , " Changes file valid" );
14
+ }
You can’t perform that action at this time.
0 commit comments