Skip to content
This repository was archived by the owner on Nov 27, 2018. It is now read-only.

Commit a1ee754

Browse files
committed
Update version numbers
1 parent 02c92c6 commit a1ee754

File tree

7 files changed

+13
-10
lines changed

7 files changed

+13
-10
lines changed

samples/RoutingSample.Web/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"dependencies": {
33
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
44
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
5-
"Microsoft.AspNetCore.Routing": "1.0.0"
5+
"Microsoft.AspNetCore.Routing": "1.0.1"
66
},
77
"buildOptions": {
88
"emitEntryPoint": true

src/Microsoft.AspNetCore.Routing.Abstractions/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"description": "ASP.NET Core abstractions for routing requests to application logic and for generating links.\r\nCommonly used types:\r\nMicrosoft.AspNetCore.Routing.IRouteHandler\r\nMicrosoft.AspNetCore.Routing.RouteData.",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"packOptions": {
55
"repository": {
66
"type": "git",

src/Microsoft.AspNetCore.Routing.DecisionTree.Sources/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"description": "Components for building a DecisionTree.",
3-
"version": "1.0.0-rtm-21431",
3+
"version": "1.0.1",
44
"packOptions": {
55
"repository": {
66
"type": "git",

src/Microsoft.AspNetCore.Routing/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"description": "ASP.NET Core middleware for routing requests to application logic and for generating links.\r\nCommonly used types:\r\n Microsoft.AspNetCore.Routing.Route\r\nMicrosoft.AspNetCore.Routing.RouteCollection",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"packOptions": {
55
"repository": {
66
"type": "git",
@@ -21,10 +21,10 @@
2121
},
2222
"dependencies": {
2323
"Microsoft.AspNetCore.Http.Extensions": "1.0.0",
24-
"Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
24+
"Microsoft.AspNetCore.Routing.Abstractions": "1.0.1",
2525
"Microsoft.AspNetCore.Routing.DecisionTree.Sources": {
2626
"type": "build",
27-
"version": "1.0.0-rtm-21431"
27+
"version": "1.0.1"
2828
},
2929
"Microsoft.Extensions.HashCodeCombiner.Sources": {
3030
"type": "build",

test/Microsoft.AspNetCore.Mvc.Routing.Abstractions.Tests/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
2+
"version": "1.0.1",
23
"buildOptions": {
34
"warningsAsErrors": true,
45
"keyFile": "../../tools/Key.snk"
56
},
67
"dependencies": {
78
"dotnet-test-xunit": "1.0.0-rc3-000000-01",
8-
"Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
9+
"Microsoft.AspNetCore.Routing.Abstractions": "1.0.1",
910
"Microsoft.AspNetCore.Testing": "1.0.0-rtm-21431",
1011
"xunit": "2.1.0"
1112
},

test/Microsoft.AspNetCore.Routing.DecisionTree.Sources.Tests/project.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
2+
"version": "1.0.1",
23
"buildOptions": {
34
"warningsAsErrors": true
45
},
56
"dependencies": {
67
"dotnet-test-xunit": "1.0.0-rc3-000000-01",
7-
"Microsoft.AspNetCore.Routing": "1.0.0",
8+
"Microsoft.AspNetCore.Routing": "1.0.1",
89
"Microsoft.AspNetCore.Routing.DecisionTree.Sources": {
910
"type": "build",
10-
"version": "1.0.0-rtm-21431"
11+
"version": "1.0.1"
1112
},
1213
"Microsoft.AspNetCore.Testing": "1.0.0-rtm-21431",
1314
"xunit": "2.1.0"

test/Microsoft.AspNetCore.Routing.Tests/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
2+
"version": "1.0.1",
23
"buildOptions": {
34
"warningsAsErrors": true
45
},
56
"dependencies": {
67
"dotnet-test-xunit": "1.0.0-rc3-000000-01",
78
"Microsoft.AspNetCore.Http": "1.0.0",
8-
"Microsoft.AspNetCore.Routing": "1.0.0",
9+
"Microsoft.AspNetCore.Routing": "1.0.1",
910
"Microsoft.AspNetCore.Testing": "1.0.0-rtm-21431",
1011
"Microsoft.Extensions.DependencyInjection": "1.0.0",
1112
"Microsoft.Extensions.Logging": "1.0.0",

0 commit comments

Comments
 (0)