Skip to content

Commit 8752403

Browse files
authored
Merge pull request #42 from mailtrap/replace-railsware-with-mailtrap-org
Replace ralsware github org with mailtrap org
2 parents b404b6c + a68587b commit 8752403

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Refer to the [`examples`](examples) folder for the source code of this and other
109109

110110
### API Reference
111111

112-
You can find the API reference [here](https://railsware.github.io/mailtrap-java/index.html).
112+
You can find the API reference [here](https://mailtrap.github.io/mailtrap-java/index.html).
113113

114114
### General API
115115

@@ -144,7 +144,7 @@ You can find the API reference [here](https://railsware.github.io/mailtrap-java/
144144

145145
## Contributing
146146

147-
Bug reports and pull requests are welcome on [GitHub](https://github.com/railsware/mailtrap-java). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](CODE_OF_CONDUCT.md).
147+
Bug reports and pull requests are welcome on [GitHub](https://github.com/mailtrap/mailtrap-java). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](CODE_OF_CONDUCT.md).
148148

149149
## License
150150

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ This client allows you to quickly and easily integrate your Java application wit
1515

1616
## License
1717

18-
Licensed under the <a href="https://github.com/railsware/mailtrap-java/blob/main/LICENSE.txt" target="_blank">MIT License</a>.
18+
Licensed under the <a href="https://github.com/mailtrap/mailtrap-java/blob/main/LICENSE.txt" target="_blank">MIT License</a>.

docs/usage-examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Detailed Usage Examples
22

3-
Code examples covering all APIs can be found <a href="https://github.com/railsware/mailtrap-java/tree/main/examples/java/io/mailtrap/examples" target="_blank">here</a>.
3+
Code examples covering all APIs can be found <a href="https://github.com/mailtrap/mailtrap-java/tree/main/examples/java/io/mailtrap/examples" target="_blank">here</a>.

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
</developers>
3232

3333
<scm>
34-
<url>https://github.com/railsware/mailtrap-java</url>
35-
<connection>scm:git:git://github.com/railsware/mailtrap-java.git</connection>
34+
<url>https://github.com/mailtrap/mailtrap-java</url>
35+
<connection>scm:git:git://github.com/mailtrap/mailtrap-java.git</connection>
3636
</scm>
3737

3838
<properties>

src/main/java/io/mailtrap/http/impl/DefaultMailtrapHttpClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ private HttpRequest.Builder prepareRequest(final String url, final RequestData r
169169
.header("Accept", "application/json")
170170
.header("Content-Type", "application/json; charset=UTF-8")
171171
.header("Authorization", "Bearer " + token)
172-
.header("User-Agent", "mailtrap-java (https://github.com/railsware/mailtrap-java)");
172+
.header("User-Agent", "mailtrap-java (https://github.com/mailtrap/mailtrap-java)");
173173

174174
final Map<String, Object> headers = new HashMap<>(requestData.getHeaders());
175175
for (Map.Entry<String, ?> entry : headers.entrySet()) {

0 commit comments

Comments
 (0)