Skip to content

Commit 4a29b0c

Browse files
committed
Bump version to 0.1.0
1 parent caacc81 commit 4a29b0c

File tree

5 files changed

+33
-27
lines changed

5 files changed

+33
-27
lines changed

Neo4jClient.FsQuotations.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "project", "project", "{BF60
1616
ProjectSection(SolutionItems) = preProject
1717
build.fsx = build.fsx
1818
README.md = README.md
19+
release.cmd = release.cmd
1920
RELEASE_NOTES.md = RELEASE_NOTES.md
2021
EndProjectSection
2122
EndProject

RELEASE_NOTES.md

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,2 @@
1-
### 1.0 - Unreleased
2-
* More awesome stuff coming
3-
* Added SourceLink for Source Indexing PDB
4-
5-
#### 0.5.1-beta - November 6 2013
6-
* Improved quality of solution-wide README.md files
7-
8-
#### 0.5.0-beta - October 29 2013
9-
* Improved quality of solution-wide README.md files
10-
11-
#### 0.0.1-beta - October 24 2013
12-
* Changed name from fsharp-project-scaffold to FSharp.ProjectScaffold
13-
* Initial release
1+
#### 0.1.0 - April 27 2016
2+
* First usable version

src/Neo4jClient.FsQuotations/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ open System.Runtime.CompilerServices
55
[<assembly: AssemblyTitleAttribute("Neo4jClient.FsQuotations")>]
66
[<assembly: AssemblyProductAttribute("Neo4jClient.FsQuotations")>]
77
[<assembly: AssemblyDescriptionAttribute("Neo4jClient with F# quotations")>]
8-
[<assembly: AssemblyVersionAttribute("1.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("1.0")>]
8+
[<assembly: AssemblyVersionAttribute("0.1.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.1.0")>]
1010
[<assembly: InternalsVisibleToAttribute("Neo4jClient.FsQuotations.Tests")>]
1111
do ()
1212

1313
module internal AssemblyVersionInformation =
14-
let [<Literal>] Version = "1.0"
15-
let [<Literal>] InformationalVersion = "1.0"
14+
let [<Literal>] Version = "0.1.0"
15+
let [<Literal>] InformationalVersion = "0.1.0"

src/Neo4jClient.FsQuotations/Cypher.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ type internal NodeMatch<'TKey> =
1616
TypeInfo = typeof<'T> }
1717

1818
[<RequireQualifiedAccess>]
19-
module Cypher =
19+
module internal Cypher =
2020
let inline raiseNeo4jNodeTypeExceptionFromType (typeinfo: Type) =
2121
raise (ArgumentException(sprintf "The '%s' type must define a property with 'Neo4jKeyAttribute'" typeinfo.FullName))
2222

src/Neo4jClient.FsQuotations/DevPlayground.fsx

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,32 @@ open FSharp.Linq.RuntimeHelpers
3434
open System.Linq.Expressions
3535
open Neo4jClient.Cypher
3636

37+
//<@
38+
//where ((1 = 2 || 1 = 3) && 1 = 3)
39+
//where (1 = 2 || 1 = 2 || 1 = 3)
40+
//where (1 = 2 && 1 = 2 && 1 = 3)
41+
//where (1 = 2 && 1 = 3)
42+
//where (1 = 2)
43+
//@>
44+
3745
<@
38-
let isResidentRel = declareRelationship<IsResidentOf>
39-
matchRightRelation declareNode<UserNode> isResidentRel declareNode<HouseholdNode>
40-
returnResults isResidentRel
46+
let u = declareNode<UserNode>
47+
matchNode u
48+
where (u.FacebookId > "12344" && u.FacebookId >= "12346")
49+
returnResults u
4150
@>
4251
|> executeReadQuery client.Cypher
4352

44-
<@
45-
let isResidentRel = declareRelationship<IsResidentOf>
46-
matchRightRelation declareNode<UserNode> isResidentRel declareNode<HouseholdNode>
47-
deleteRelationship isResidentRel
48-
@>
49-
|> executeWriteQuery client.Cypher
53+
//<@
54+
//let isResidentRel = declareRelationship<IsResidentOf>
55+
//matchRightRelation declareNode<UserNode> isResidentRel declareNode<HouseholdNode>
56+
//returnResults isResidentRel
57+
//@>
58+
//|> executeReadQuery client.Cypher
59+
//
60+
//<@
61+
//let isResidentRel = declareRelationship<IsResidentOf>
62+
//matchRightRelation declareNode<UserNode> isResidentRel declareNode<HouseholdNode>
63+
//deleteRelationship isResidentRel
64+
//@>
65+
//|> executeWriteQuery client.Cypher

0 commit comments

Comments
 (0)