Skip to content

Commit

Permalink
↑ 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mrahhal committed Oct 11, 2016
1 parent 8204b0b commit 0a6c03d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Steps needed (nothing hard, just a lot of inital steps that you'll have to do on
- },
+ "EntityFramework": "6.1.3",
+ "Migrator.EF6.Tools": {
+ "version": "1.0.6",
+ "version": "1.0.7",
+ "type": "build"
+ },
```
Expand All @@ -44,7 +44,7 @@ Steps needed (nothing hard, just a lot of inital steps that you'll have to do on
- ...
- }
+ "Migrator.EF6.Tools": {
+ "version": "1.0.6",
+ "version": "1.0.7",
+ "imports": "portable-net45+win8+dnxcore50"
+ }
```
Expand Down Expand Up @@ -125,6 +125,9 @@ I'm aware that I should have aligned the version of `Migrator.EF6.Tools` to the

The `1.0.*` releases align with .NET Core tooling `1.0.0-preview2`.

#### `1.0.7`
- Fixed: Embed the "Source" resource when it's available. [#30](https://github.com/mrahhal/Migrator.EF6/issues/30)

#### `1.0.6`
- Support overriding the connection string from the command line through the `-cs` option. This way you won't have to hard code the string inside the `DbContext`. [#28](https://github.com/mrahhal/Migrator.EF6/issues/28)

Expand Down
2 changes: 1 addition & 1 deletion build/Build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Major>1</Major>
<Minor>0</Minor>
<Patch>6</Patch>
<Patch>7</Patch>
<Quality></Quality>

<Version>$(Major).$(Minor).$(Patch)</Version>
Expand Down
4 changes: 2 additions & 2 deletions samples/BasicConsoleApp/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"dependencies": {
"EntityFramework": "6.1.3",
"Migrator.EF6.Tools": {
"version": "1.0.6",
"version": "1.0.7",
"target": "package",
"type": "build"
}
},

"tools": {
"Migrator.EF6.Tools": {
"version": "1.0.6",
"version": "1.0.7",
"imports": "portable-net45+win8+dnxcore50"
}
},
Expand Down
4 changes: 2 additions & 2 deletions samples/WithIdentity/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"type": "build"
},
"Migrator.EF6.Tools": {
"version": "1.0.6",
"version": "1.0.7",
"target": "package",
"type": "build"
},
Expand Down Expand Up @@ -58,7 +58,7 @@
]
},
"Migrator.EF6.Tools": {
"version": "1.0.6",
"version": "1.0.7",
"imports": "portable-net45+win8+dnxcore50"
}
},
Expand Down

0 comments on commit 0a6c03d

Please sign in to comment.