Skip to content

Commit 59e36c3

Browse files
chore: prep the repo for automated releasing (#93)
1 parent 8902983 commit 59e36c3

File tree

4 files changed

+17
-10
lines changed

4 files changed

+17
-10
lines changed

.travis.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,8 @@ solution: CSharpHTTPClient/CSharpHTTPClient.sln
33
env:
44
matrix:
55
secure: KJrQ+NfmzlgCSXRyqeAMDGZUG6GO4/+xk1T0wGy1BgVz8seo/fDWL8osWEljB4Sj05sfFj7CM+rociwL6sdVyqCiHbCAM7XuHs58D+4Tlh5pGHL+G1qOl65/pDl0ulq+M7PwDxHPZ60/oyH2a16t5jtD9e4W31y2fXzEbHGLHXg=
6-
install:
7-
- nuget restore CSharpHTTPClient/CSharpHTTPClient.sln
8-
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
96
script:
10-
- xbuild /p:Configuration=Release CSharpHTTPClient/CSharpHTTPClient.sln
11-
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe UnitTest/bin/Release/UnitTest.dll -domain:None
12-
- curl -s https://codecov.io/bash > .codecov
13-
- chmod +x .codecov
14-
- ./.codecov
7+
- make test
158
deploy:
169
skip_cleanup: true
1710
provider: script

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ All notable changes to this project will be documented in this file.
33

44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6-
## [3.4.1] - 2019-08-14
6+
[2019-08-14] Version 3.4.1
7+
--------------------------
78
### Added
89
- [PR #90](https://github.com/sendgrid/csharp-http-client/pull/90): Twilio branding updates.
910

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2012-2019 Twilio SendGrid, Inc.
3+
Copyright (c) 2012-2020 Twilio SendGrid, Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Makefile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.PHONY: test install
2+
3+
install:
4+
nuget restore CSharpHTTPClient/CSharpHTTPClient.sln
5+
nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
6+
7+
test: install
8+
xbuild /p:Configuration=Release CSharpHTTPClient/CSharpHTTPClient.sln
9+
mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe UnitTest/bin/Release/UnitTest.dll -domain:None
10+
curl -s https://codecov.io/bash > .codecov
11+
chmod +x .codecov
12+
./.codecov
13+

0 commit comments

Comments
 (0)