neo4j 7.0.13 → 7.0.14

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: df8bb64d46712b18b72eee7f986912e0f78d0c2f
4
- data.tar.gz: 6cd7303b19d72680cb42e9f14485d666586bfdbe
3
+ metadata.gz: 2f5e92e1dbf3a5c68cdb7db4c5ceca400b3811ad
4
+ data.tar.gz: 5708b52d084150761bbe442f38bf6464bdd64fa1
5
5
  SHA512:
6
- metadata.gz: 425a60cfa9c9b9cd2df77999a71168f29e413e7e5ac270ed32e5a5f93b8d4504aa2875c8db36b0100a26a9b4723e4c10a797bc7fed27b025c9787c99644466b7
7
- data.tar.gz: 445087632f207eefd9b3e3a9c763a81bc1bf8b971e987e0e896faf7c82b9d975cc9d46ea40e0e68751a9dd7a3edc65cc9233b24ad0c64cccd26aa09205adfbc1
6
+ metadata.gz: e0162cb551b1f35a5784d12da7cfa13990faadcb06f0389571153980186c4cbb71bbc2aac526e0d4ecc12a6331f7a456266db4ccc0d8ed42f8f73ac613cd59ce
7
+ data.tar.gz: 9613b2c10db7b05b2730e099431fbaf335facdfed8a08e791828a5263545333608e62ec576af7bcfa50b7972acfd7529fbda436b2f2ac8eabd54f615820213f3
@@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
3
3
  This file should follow the standards specified on [http://keepachangelog.com/]
4
4
  This project adheres to [Semantic Versioning](http://semver.org/).
5
5
 
6
+ ## [7.0.14] - 07-10-2016
7
+
8
+ ### Fixed
9
+
10
+ - Bug in setting `NEO4J_TYPE` (thanks bloomdido / see #1235)
11
+
6
12
  ## [7.0.12] - 06-27-2016
7
13
 
8
14
  ### Fixed
@@ -70,11 +70,8 @@ module Neo4j
70
70
  end
71
71
 
72
72
  def default_session_type
73
- if ENV['NEO4J_TYPE']
74
- :embedded_db
75
- else
76
- config_data[:type] || :server_db
77
- end.to_sym
73
+ type = ENV['NEO4J_TYPE'] || config_data[:type] || :server_db
74
+ type.to_sym
78
75
  end
79
76
 
80
77
  def default_session_path
@@ -1,3 +1,3 @@
1
1
  module Neo4j
2
- VERSION = '7.0.13'
2
+ VERSION = '7.0.14'
3
3
  end
@@ -16,4 +16,3 @@ module Neo4j
16
16
  end
17
17
  end
18
18
  end
19
-
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neo4j
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.13
4
+ version: 7.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andreas Ronge, Brian Underwood, Chris Grigg
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-07 00:00:00.000000000 Z
11
+ date: 2016-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter