Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ follow this guide when creating contributions to help make the project better!
If you find a bug or a place where documentation needs to be improved, or if you
have a feature request,
please
[submit an issue](https://github.com/citizennet/purescript-httpure/issues/new)! In
[submit an issue](https://github.com/davezuch/purescript-httpure/issues/new)! In
issues you submit, please be clear, and preferably have code examples indicating
what is broken, needs improvement, or what your requested API should look like.

Expand All @@ -18,9 +18,9 @@ All contributions to this repository should come in the form of pull requests.
All pull requests must be reviewed before being merged. Please follow these
steps for creating a successful PR:

1. [Create an issue](https://github.com/citizennet/purescript-httpure/issues/new)
1. [Create an issue](https://github.com/davezuch/purescript-httpure/issues/new)
for your contribution.
2. [Create a fork](https://github.com/citizennet/purescript-httpure) on github.
2. [Create a fork](https://github.com/davezuch/purescript-httpure) on github.
3. Create a branch in your fork for your contribution.
4. Add your contribution to the source tree.
5. Run the test suite. All tests MUST pass for a PR to be accepted.
Expand Down
6 changes: 3 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# HTTPure

[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/citizennet/purescript-httpure/main/License)
[![Latest release](http://img.shields.io/github/release/citizennet/purescript-httpure.svg)](https://github.com/citizennet/purescript-httpure/releases)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/davezuch/purescript-httpure/main/License)
[![Latest release](http://img.shields.io/github/release/davezuch/purescript-httpure.svg)](https://github.com/davezuch/purescript-httpure/releases)
[![purescript-httpure on Pursuit](https://pursuit.purescript.org/packages/purescript-httpure/badge)](https://pursuit.purescript.org/packages/purescript-httpure)

A purescript HTTP server framework.
Expand All @@ -18,7 +18,7 @@ HTTPure is:

This project is currently fairly stable, but has not reached it's 1.0 release
yet. You can track what's left before it gets there by looking at our
[roadmap](https://github.com/citizennet/purescript-httpure/projects). The API
[roadmap](https://github.com/davezuch/purescript-httpure/projects). The API
signatures are _mostly_ stable, but are subject to change before the 1.0 release
if there's a good reason to change them.

Expand Down
2 changes: 1 addition & 1 deletion Releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
5. If you are pushing a non-patch release, create and push a branch named with
the version series, i.e. `v0.1.x`.
6. [Create the release on
github](https://github.com/citizennet/purescript-httpure/releases/new).
github](https://github.com/davezuch/purescript-httpure/releases/new).
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
],
"repository": {
"type": "git",
"url": "https://github.com/citizennet/purescript-httpure.git"
"url": "https://github.com/davezuch/purescript-httpure.git"
},
"ignore": [
"**/.*",
Expand Down
2 changes: 1 addition & 1 deletion spago.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
, packages = ./packages.dhall
, sources = [ "src/**/*.purs" ]
, license = "MIT"
, repository = "https://github.com/citizennet/purescript-httpure.git"
, repository = "https://github.com/davezuch/purescript-httpure.git"
}
Loading