diff --git a/.travis.yml b/.travis.yml index 8daef51..ec6edc8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,19 +3,12 @@ solution: CSharpHTTPClient/CSharpHTTPClient.sln env: matrix: secure: KJrQ+NfmzlgCSXRyqeAMDGZUG6GO4/+xk1T0wGy1BgVz8seo/fDWL8osWEljB4Sj05sfFj7CM+rociwL6sdVyqCiHbCAM7XuHs58D+4Tlh5pGHL+G1qOl65/pDl0ulq+M7PwDxHPZ60/oyH2a16t5jtD9e4W31y2fXzEbHGLHXg= -install: -- nuget restore CSharpHTTPClient/CSharpHTTPClient.sln -- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner script: -- xbuild /p:Configuration=Release CSharpHTTPClient/CSharpHTTPClient.sln -- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe UnitTest/bin/Release/UnitTest.dll -domain:None -- curl -s https://codecov.io/bash > .codecov -- chmod +x .codecov -- ./.codecov + - make test deploy: skip_cleanup: true provider: script - script: nuget push ./CSharpHTTPClient/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json + script: nuget push ./CSharpHTTPClient/bin/Release/*.nupkg -ApiKey $NUGET_API_KEY -Source https://api.nuget.org/v3/index.json on: branch: master tags: true diff --git a/CHANGELOG.md b/CHANGELOG.md index 0776e51..225148b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,8 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## [3.4.1] - 2019-08-14 +[2019-08-14] Version 3.4.1 +-------------------------- ### Added - [PR #90](https://github.com/sendgrid/csharp-http-client/pull/90): Twilio branding updates. diff --git a/LICENSE.md b/LICENSE.md index 2bb37c2..bdcfbf2 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2012-2019 Twilio SendGrid, Inc. +Copyright (c) 2012-2020 Twilio SendGrid, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b1e9484 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +.PHONY: test install + +install: + nuget restore CSharpHTTPClient/CSharpHTTPClient.sln + nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner + +test: install + xbuild /p:Configuration=Release CSharpHTTPClient/CSharpHTTPClient.sln + mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe UnitTest/bin/Release/UnitTest.dll -domain:None + curl -s https://codecov.io/bash > .codecov + chmod +x .codecov + ./.codecov +