bundleup 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d61632914c5c1ca565a988a58d9afe3eb87b20b8
4
- data.tar.gz: 5acef44c5c76ba56f4b45f8691440b3d5b821a8e
3
+ metadata.gz: 245fefcb714dea09da4249386faf7d427c4042f1
4
+ data.tar.gz: fb6a1589a8253f9db5bcb85d036b795581f572ad
5
5
  SHA512:
6
- metadata.gz: f760e4e30738338457bb265e70a8019e24b72495fdc0a40931598b58f4504cbdf7c557d1a87f078836ab93124d37ccdaab8cbcb9c86a5cf9add431175cd3a59e
7
- data.tar.gz: 9c0fcc6014120a5bbf4a844ff58b61816a81dc19b6927d6e0e41d5188af9da329481c454f85a804925e8413c364d2e7c1feaebeebfe59507450e30e3027c9411
6
+ metadata.gz: b2a63df2aee21d9a55cf8173c1becf3e897cf23ed4d0547849676c1c2ec36c4dec450d03bc055054f5579baeb60503726ca6099265c8836fdbe90e087e404481
7
+ data.tar.gz: 952d65e4e3a7a5fb023022fe017933e9d7295da1697e5d7102cc1bf400c1657161426fd9325042c906c1e491164b404d6ce9f5ce69fa3073265a4ab563666fe0
@@ -8,6 +8,13 @@ bundleup is in a pre-1.0 state. This means that its APIs and behavior are subjec
8
8
 
9
9
  * Your contribution here!
10
10
 
11
+ ## [0.3.0][] (2016-01-08)
12
+
13
+ * Always show SHA changes in red. If a dependency is tracking a
14
+ Git branch, and running `bundle update` would cause that branch
15
+ to updated and point to a new ref, that is something that
16
+ warrants attention.
17
+
11
18
  ## [0.2.0][] (2015-12-26)
12
19
 
13
20
  * Animated spinner during long-running bundler commands
@@ -20,5 +27,6 @@ bundleup is in a pre-1.0 state. This means that its APIs and behavior are subjec
20
27
  * Initial release
21
28
 
22
29
  [Semver]: http://semver.org
23
- [Unreleased]: https://github.com/mattbrictson/bundleup/compare/v0.2.0...HEAD
30
+ [Unreleased]: https://github.com/mattbrictson/bundleup/compare/v0.3.0...HEAD
31
+ [0.3.0]: https://github.com/mattbrictson/bundleup/compare/v0.2.0...v0.3.0
24
32
  [0.2.0]: https://github.com/mattbrictson/bundleup/compare/v0.1.0...v0.2.0
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2015 Matt Brictson
3
+ Copyright (c) 2016 Matt Brictson
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/bundleup.svg)](http://badge.fury.io/rb/bundleup)
4
4
  [![Build Status](https://travis-ci.org/mattbrictson/bundleup.svg?branch=master)](https://travis-ci.org/mattbrictson/bundleup)
5
+ [![Coverage Status](https://coveralls.io/repos/mattbrictson/bundleup/badge.svg?branch=master&service=github)](https://coveralls.io/github/mattbrictson/bundleup?branch=master)
5
6
 
6
7
  **Run `bundleup` on a Ruby project containing a Gemfile to see what gem dependencies need updating.** It is a friendlier command-line interface to [Bundler’s][bundler] `bundle update` and `bundle outdated`.
7
8
 
@@ -47,11 +47,11 @@ module Bundleup
47
47
  private
48
48
 
49
49
  def major(version)
50
- version.split(".", 2)[0].to_i
50
+ version.split(".", 2)[0]
51
51
  end
52
52
 
53
53
  def minor(version)
54
- version.split(".", 3)[1].to_i
54
+ version.split(".", 3)[1]
55
55
  end
56
56
  end
57
57
  end
@@ -1,3 +1,3 @@
1
1
  module Bundleup
2
- VERSION = "0.2.0"
2
+ VERSION = "0.3.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundleup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-12-26 00:00:00.000000000 Z
11
+ date: 2016-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler