Skip to content

Commit

Permalink
Merge pull request #8 from mdsol/develop
Browse files Browse the repository at this point in the history
Release of 2.1.1
  • Loading branch information
bvillanueva-mdsol authored Dec 16, 2016
2 parents 5224b6b + 4c95198 commit 6bb3c05
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/Medidata.MAuth.Core/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.1.0-*",
"version": "2.1.1-*",
"title": "Medidata.MAuth.Core",
"authors": [ "Medidata Solutions, Inc." ],
"description": "A core package for Medidata HMAC protocol implementation. This package contains the core functionality which used by the MAuth authentication protocol-specific components. This package also can be used standalone if you want to sign HTTP/HTTPS requests with Medidata MAuth keys using the .NET HttpClient message handler mechanism.",
Expand All @@ -15,14 +15,14 @@
},

"dependencies": {
"NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1"
},

"frameworks": {
"netstandard1.4": {
"imports": "dnxcore50",
"dependencies": {
"NETStandard.Library": "1.6.1",
"System.Net.Http": "4.3.0",
"Portable.BouncyCastle": "1.8.1.2"
}
Expand Down
6 changes: 4 additions & 2 deletions src/Medidata.MAuth.Owin/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.1.0-*",
"version": "2.1.1-*",
"title": "Medidata.MAuth.Owin",
"description": "This package contains an OWIN middleware to validate signed http requests with the Medidata MAuth protocol. The middleware communicates with an MAuth server in order to confirm the validity of the request authentication header. Include this package in your OWIN-enabled web api if you want to authenticate the api requests signed with the MAuth protocol.",
"copyright": "Copyright © Medidata Solutions, Inc. 2016",
Expand All @@ -16,7 +16,9 @@
},

"dependencies": {
"Medidata.MAuth.Core": "2.1.0-*"
"Medidata.MAuth.Core": {
"target": "project"
}
},

"frameworks": {
Expand Down
6 changes: 4 additions & 2 deletions src/Medidata.MAuth.WebApi/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.1.0-*",
"version": "2.1.1-*",
"title": "Medidata.MAuth.WebApi",
"description": "This package contains an HTTP message handler to validate signed http requests with the Medidata MAuth protocol. The handler communicates with an MAuth server in order to confirm the validity of the request authentication header. Include this package in your WebAPI application if you want to authenticate the api requests signed with the MAuth protocol.",
"copyright": "Copyright © Medidata Solutions, Inc. 2016",
Expand All @@ -16,7 +16,9 @@
},

"dependencies": {
"Medidata.MAuth.Core": "2.1.0-*"
"Medidata.MAuth.Core": {
"target": "project"
}
},

"frameworks": {
Expand Down
2 changes: 1 addition & 1 deletion tests/Medidata.MAuth.Tests/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.1.0-*",
"version": "2.1.1-*",
"title": "Medidata.MAuth.Tests",
"authors": [ "Medidata Solutions, Inc." ],
"description": "Assembly which contains unit tests of the Medidata.MAuth framework.",
Expand Down

0 comments on commit 6bb3c05

Please sign in to comment.