ravendb-api-client 0.1.0 → 0.1.1

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
  SHA256:
3
- metadata.gz: f9238a8b6bbec9ba64c8afb27c0d9d01fc7630dcfa16ae13925c060c7451696c
4
- data.tar.gz: 32353c5ce224b3a79b5f01400e4a33fdd90473c0a4963d597bb98b66ed159f4e
3
+ metadata.gz: 0e2e2c67715052b34d4f74b0df0d92ebaf96a0da1f17fbf0adcfc7447a3e3966
4
+ data.tar.gz: 9db350b5d31d4e3c163099284f432ce5fc11adc1f10adf8928fdd582e6ebfbe0
5
5
  SHA512:
6
- metadata.gz: 37a1c16c5743757efb49aa9bad000172ecae277fae9f2cf2750af7d79875d57ec0cf9416f49c8e63f882db3f8ea02169ef8f82aeba5566b765738ea50dc86073
7
- data.tar.gz: 7b515df59b357421ea547422204c09e4efee6391941648f3c957b65ebf4613f4eb04ef7bb70b1fdc388bc7b5e8775b1a8ccb8322e44e3645edd4b50100c77d25
6
+ metadata.gz: fa9590da5e488d9ebfa0b28b32880974d1ce1f2923f24a935f49a3250cbd23c24cf1ada2a5dd58de38e7766e69dcdcd9ad4df97ab82dd50d77c95f137da1ace5
7
+ data.tar.gz: f0313c27ddb9baf4652e1de41d143a03d79257fa1b9d6bc810b5474d5e40d752843b2540d68da37b41ad1659f4bc7416de391bce6fa3bd852e985b4bede62bb4
@@ -1,5 +1,13 @@
1
1
  # Change Log
2
2
 
3
+ ## [v0.1.1](https://github.com/TraGicCode/ravendb-api-client/tree/v0.1.1) (2017-12-05)
4
+ [Full Changelog](https://github.com/TraGicCode/ravendb-api-client/compare/v0.1.0...v0.1.1)
5
+
6
+ **Merged pull requests:**
7
+
8
+ - Removed pry require from code. [\#1](https://github.com/TraGicCode/ravendb-api-client/pull/1) ([TraGicCode](https://github.com/TraGicCode))
9
+
10
+ ## [v0.1.0](https://github.com/TraGicCode/ravendb-api-client/tree/v0.1.0) (2017-12-05)
3
11
 
4
12
 
5
13
  \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
data/Rakefile CHANGED
@@ -27,5 +27,5 @@ end
27
27
 
28
28
  desc 'Generates a changelog'
29
29
  task :generate_changelog do
30
- sh("github_changelog_generator --cache_log C:/github-changelog-logger.log --token #{ENV['CHANGELOG_GITHUB_TOKEN']}")
30
+ sh("github_changelog_generator --token #{ENV['CHANGELOG_GITHUB_TOKEN']}")
31
31
  end
@@ -1,7 +1,6 @@
1
1
  require "ravendb/api/client/version"
2
2
  require 'net/http'
3
3
  require 'json'
4
- require 'pry'
5
4
 
6
5
  # RavenDB HTTP Api
7
6
  # https://ravendb.net/docs/article-page/3.5/http/client-api/commands/how-to/get-database-configuration
@@ -1,5 +1,5 @@
1
1
  module Ravendb
2
2
  module Api
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ravendb-api-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - tragiccode