Skip to content

Commit 0114021

Browse files
committed
Rename repo from httpie/httpie to httpie/cli
1 parent 30a6f73 commit 0114021

40 files changed

+221
-221
lines changed

.github/workflows/release-linux-standalone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
id: release_id
5353
run: |
5454
pip install httpie
55-
export API_URL="api.github.com/repos/httpie/httpie/releases/tags/${{ github.event.inputs.tag_name }}"
55+
export API_URL="api.github.com/repos/httpie/cli/releases/tags/${{ github.event.inputs.tag_name }}"
5656
export UPLOAD_URL=`https --ignore-stdin GET $API_URL | jq -r ".upload_url"`
5757
echo "::set-output name=UPLOAD_URL::$UPLOAD_URL"
5858

AUTHORS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Patches, features, ideas
66

7-
[Complete list of contributors on GitHub](https://github.com/httpie/httpie/graphs/contributors)
7+
[Complete list of contributors on GitHub](https://github.com/httpie/cli/graphs/contributors)
88

99
- [Cláudia T. Delgado](https://github.com/claudiatd)
1010
- [Hank Gay](https://github.com/gthank)

CHANGELOG.md

Lines changed: 128 additions & 128 deletions
Large diffs are not rendered by default.

CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $ http --debug <COMPLETE ARGUMENT LIST THAT TRIGGERS THE ERROR>
1919

2020
## 2. Contributing Code and Docs
2121

22-
Before working on a new feature or a bug, please browse [existing issues](https://github.com/httpie/httpie/issues)
22+
Before working on a new feature or a bug, please browse [existing issues](https://github.com/httpie/cli/issues)
2323
to see whether it has previously been discussed.
2424

2525
If your change alters HTTPie’s behaviour or interface, it's a good idea to
@@ -38,13 +38,13 @@ for existing-yet-previously-untested behavior will very likely be merged.
3838
Therefore, docs and tests improvements are a great candidate for your first
3939
contribution.
4040

41-
Consider also adding a [CHANGELOG](https://github.com/httpie/httpie/blob/master/CHANGELOG.md) entry for your changes.
41+
Consider also adding a [CHANGELOG](https://github.com/httpie/cli/blob/master/CHANGELOG.md) entry for your changes.
4242

4343
### Development Environment
4444

4545
#### Getting the code
4646

47-
Go to <https://github.com/httpie/httpie> and fork the project repository.
47+
Go to <https://github.com/httpie/cli> and fork the project repository.
4848

4949
```bash
5050
# Clone your fork
@@ -59,7 +59,7 @@ $ git checkout -b my_topical_branch
5959

6060
#### Setup
6161

62-
The [Makefile](https://github.com/httpie/httpie/blob/master/Makefile) contains a bunch of tasks to get you started.
62+
The [Makefile](https://github.com/httpie/cli/blob/master/Makefile) contains a bunch of tasks to get you started.
6363
You can run `$ make` to see all the available tasks.
6464

6565
To get started, run the command below, which:
@@ -112,7 +112,7 @@ and that `make pycodestyle` passes.
112112

113113
Please add tests for any new features and bug fixes.
114114

115-
When you open a Pull Request, [GitHub Actions](https://github.com/httpie/httpie/actions) will automatically run HTTPie’s [test suite](https://github.com/httpie/httpie/tree/master/tests) against your code, so please make sure all checks pass.
115+
When you open a Pull Request, [GitHub Actions](https://github.com/httpie/cli/actions) will automatically run HTTPie’s [test suite](https://github.com/httpie/cli/tree/master/tests) against your code, so please make sure all checks pass.
116116

117117
#### Running tests locally
118118

@@ -144,7 +144,7 @@ $ python -m pytest tests/test_uploads.py::TestMultipartFormDataFileUpload
144144
$ python -m pytest tests/test_uploads.py::TestMultipartFormDataFileUpload::test_upload_ok
145145
```
146146

147-
See [Makefile](https://github.com/httpie/httpie/blob/master/Makefile) for additional development utilities.
147+
See [Makefile](https://github.com/httpie/cli/blob/master/Makefile) for additional development utilities.
148148

149149
#### Running benchmarks
150150

@@ -209,4 +209,4 @@ $ python -m pytest
209209

210210
______________________________________________________________________
211211

212-
Finally, feel free to add yourself to [AUTHORS](https://github.com/httpie/httpie/blob/master/AUTHORS.md)!
212+
Finally, feel free to add yourself to [AUTHORS](https://github.com/httpie/cli/blob/master/AUTHORS.md)!

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ include CHANGELOG.md
44
include AUTHORS.md
55
include docs/README.md
66

7-
# <https://github.com/httpie/httpie/issues/182>
7+
# <https://github.com/httpie/cli/issues/182>
88
recursive-include tests/ *

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h2 align="center">
22
<a href="https://httpie.io" target="blank_">
3-
<img height="100" alt="HTTPie" src="https://raw.githubusercontent.com/httpie/httpie/master/docs/httpie-logo.svg" />
3+
<img height="100" alt="HTTPie" src="https://raw.githubusercontent.com/httpie/cli/master/docs/httpie-logo.svg" />
44
</a>
55
<br>
66
HTTPie for Terminal: human-friendly CLI HTTP client for the API era
@@ -21,8 +21,8 @@
2121

2222
[![Docs](https://img.shields.io/badge/stable%20docs-httpie.io%2Fdocs%2Fcli-brightgreen?style=flat&color=%2373DC8C&label=Docs)](https://httpie.org/docs/cli)
2323
[![Latest version](https://img.shields.io/pypi/v/httpie.svg?style=flat&label=Latest&color=%234B78E6&logo=&logoColor=white)](https://pypi.python.org/pypi/httpie)
24-
[![Build](https://img.shields.io/github/actions/workflow/status/httpie/httpie/tests.yml?branch=master&color=%23FA9BFA&label=Build)](https://github.com/httpie/httpie/actions)
25-
[![Coverage](https://img.shields.io/codecov/c/github/httpie/httpie?style=flat&label=Coverage&color=%2373DC8C)](https://codecov.io/gh/httpie/httpie)
24+
[![Build](https://img.shields.io/github/actions/workflow/status/httpie/cli/tests.yml?branch=master&color=%23FA9BFA&label=Build)](https://github.com/httpie/cli/actions)
25+
[![Coverage](https://img.shields.io/codecov/c/github/httpie/cli?style=flat&label=Coverage&color=%2373DC8C)](https://codecov.io/gh/httpie/cli)
2626

2727
</div>
2828

@@ -34,7 +34,7 @@ They use simple and natural syntax and provide formatted and colorized output.
3434

3535
<div align="center">
3636

37-
<img src="https://raw.githubusercontent.com/httpie/httpie/master/docs/httpie-animation.gif" alt="HTTPie in action" width="100%"/>
37+
<img src="https://raw.githubusercontent.com/httpie/cli/master/docs/httpie-animation.gif" alt="HTTPie in action" width="100%"/>
3838

3939

4040
</div>
@@ -88,10 +88,10 @@ Build and print a request without sending it using [offline mode](https://httpie
8888
http --offline pie.dev/post hello=offline
8989
```
9090

91-
Use [GitHub API](https://developer.github.com/v3/issues/comments/#create-a-comment) to post a comment on an [Issue](https://github.com/httpie/httpie/issues/83) with [authentication](https://httpie.io/docs#authentication):
91+
Use [GitHub API](https://developer.github.com/v3/issues/comments/#create-a-comment) to post a comment on an [Issue](https://github.com/httpie/cli/issues/83) with [authentication](https://httpie.io/docs#authentication):
9292

9393
```bash
94-
http -a USERNAME POST https://api.github.com/repos/httpie/httpie/issues/83/comments body='HTTPie is awesome! :heart:'
94+
http -a USERNAME POST https://api.github.com/repos/httpie/cli/issues/83/comments body='HTTPie is awesome! :heart:'
9595
```
9696

9797
[See more examples →](https://httpie.io/docs#examples)
@@ -102,11 +102,11 @@ http -a USERNAME POST https://api.github.com/repos/httpie/httpie/issues/83/comme
102102
- Join our [Discord server](https://httpie.io/discord) is to ask questions, discuss features, and for general API chat.
103103
- Tweet at [@httpie](https://twitter.com/httpie) on Twitter.
104104
- Use [StackOverflow](https://stackoverflow.com/questions/tagged/httpie) to ask questions and include a `httpie` tag.
105-
- Create [GitHub Issues](https://github.com/httpie/httpie/issues) for bug reports and feature requests.
105+
- Create [GitHub Issues](https://github.com/httpie/cli/issues) for bug reports and feature requests.
106106
- Subscribe to the [HTTPie newsletter](https://httpie.io) for occasional updates.
107107

108108
## Contributing
109109

110-
Have a look through existing [Issues](https://github.com/httpie/httpie/issues) and [Pull Requests](https://github.com/httpie/httpie/pulls) that you could help with. If you'd like to request a feature or report a bug, please [create a GitHub Issue](https://github.com/httpie/httpie/issues) using one of the templates provided.
110+
Have a look through existing [Issues](https://github.com/httpie/cli/issues) and [Pull Requests](https://github.com/httpie/cli/pulls) that you could help with. If you'd like to request a feature or report a bug, please [create a GitHub Issue](https://github.com/httpie/cli/issues) using one of the templates provided.
111111

112-
[See contribution guide →](https://github.com/httpie/httpie/blob/master/CONTRIBUTING.md)
112+
[See contribution guide →](https://github.com/httpie/cli/blob/master/CONTRIBUTING.md)

docs/README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This documentation is best viewed at [httpie.io/docs](https://httpie.org/docs).
1919
You can select your corresponding HTTPie version as well as run examples directly from the browser using a [termible.io](https://termible.io?utm_source=httpie-readme) embedded terminal.
2020

2121
If you are reading this on GitHub, then this text covers the current *development* version.
22-
You are invited to submit fixes and improvements to the docs by editing [this file](https://github.com/httpie/httpie/blob/master/docs/README.md).
22+
You are invited to submit fixes and improvements to the docs by editing [this file](https://github.com/httpie/cli/blob/master/docs/README.md).
2323

2424
</div>
2525

@@ -255,7 +255,7 @@ If you want to try out the latest version of HTTPie that hasn't been officially
255255
You can use the following command to install the development version of HTTPie on Linux, macOS, Windows, or FreeBSD operating systems. With this command, the code present in the `master` branch is downloaded and installed using `pip`.
256256

257257
```bash
258-
$ python -m pip install --upgrade https://github.com/httpie/httpie/archive/master.tar.gz
258+
$ python -m pip install --upgrade https://github.com/httpie/cli/archive/master.tar.gz
259259
```
260260

261261
There are other ways to install the development version of HTTPie on macOS and Linux.
@@ -274,7 +274,7 @@ $ snap remove httpie
274274
$ snap install httpie --edge
275275
```
276276

277-
To verify the installation, you can compare the [version identifier on GitHub](https://github.com/httpie/httpie/blob/master/httpie/__init__.py#L6) with the one available on your machine. You can check the version of HTTPie on your machine by using the command `http --version`.
277+
To verify the installation, you can compare the [version identifier on GitHub](https://github.com/httpie/cli/blob/master/httpie/__init__.py#L6) with the one available on your machine. You can check the version of HTTPie on your machine by using the command `http --version`.
278278

279279
```bash
280280
$ http --version
@@ -325,10 +325,10 @@ Build and print a request without sending it using [offline mode](#offline-mode)
325325
$ http --offline pie.dev/post hello=offline
326326
```
327327
328-
Use [GitHub API](https://developer.github.com/v3/issues/comments/#create-a-comment) to post a comment on an [issue](https://github.com/httpie/httpie/issues/83) with [authentication](#authentication):
328+
Use [GitHub API](https://developer.github.com/v3/issues/comments/#create-a-comment) to post a comment on an [issue](https://github.com/httpie/cli/issues/83) with [authentication](#authentication):
329329
330330
```bash
331-
$ http -a USERNAME POST https://api.github.com/repos/httpie/httpie/issues/83/comments body='HTTPie is awesome! :heart:'
331+
$ http -a USERNAME POST https://api.github.com/repos/httpie/cli/issues/83/comments body='HTTPie is awesome! :heart:'
332332
```
333333
334334
Upload a file using [redirected input](#redirected-input):
@@ -1754,7 +1754,7 @@ $ http pie.dev/post <<<'{"name": "John"}'
17541754
You can even pipe web services together using HTTPie:
17551755
17561756
```bash
1757-
$ http GET https://api.github.com/repos/httpie/httpie | http POST pie.dev/post
1757+
$ http GET https://api.github.com/repos/httpie/cli | http POST pie.dev/post
17581758
```
17591759
17601760
You can use `cat` to enter multiline data on the terminal:
@@ -2002,7 +2002,7 @@ HTTPie features a download mode in which it acts similarly to `wget`.
20022002
When enabled using the `--download, -d` flag, response headers are printed to the terminal (`stderr`), and a progress bar is shown while the response body is being saved to a file.
20032003
20042004
```bash
2005-
$ http --download https://github.com/httpie/httpie/archive/master.tar.gz
2005+
$ http --download https://github.com/httpie/cli/archive/master.tar.gz
20062006
```
20072007
20082008
```http
@@ -2031,7 +2031,7 @@ To prevent data loss by overwriting, HTTPie adds a unique numerical suffix to th
20312031
You can also redirect the response body to another program while the response headers and progress are still shown in the terminal:
20322032
20332033
```bash
2034-
$ http -d https://github.com/httpie/httpie/archive/master.tar.gz | tar zxf -
2034+
$ http -d https://github.com/httpie/cli/archive/master.tar.gz | tar zxf -
20352035
```
20362036
20372037
### Resuming downloads
@@ -2313,7 +2313,7 @@ These flags are available for both `sessions upgrade` and `sessions upgrade-all`
23132313
23142314
| Option | Description |
23152315
|------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
2316-
| `--bind-cookies` | Bind all previously [unbound cookies](#host-based-cookie-policy) to the session’s host ([context](https://github.com/httpie/httpie/security/advisories/GHSA-9w4w-cpc8-h2fq)). |
2316+
| `--bind-cookies` | Bind all previously [unbound cookies](#host-based-cookie-policy) to the session’s host ([context](https://github.com/httpie/cli/security/advisories/GHSA-9w4w-cpc8-h2fq)). |
23172317
23182318
23192319
## Config
@@ -2406,7 +2406,7 @@ To prevent your program from becoming unresponsive when the server fails to resp
24062406
24072407
## Plugin manager
24082408
2409-
HTTPie offers extensibility through a [plugin API](https://github.com/httpie/httpie/blob/master/httpie/plugins/base.py),
2409+
HTTPie offers extensibility through a [plugin API](https://github.com/httpie/cli/blob/master/httpie/plugins/base.py),
24102410
and there are dozens of plugins available to try!
24112411
They add things like new authentication methods ([akamai/httpie-edgegrid](https://github.com/akamai/httpie-edgegrid)),
24122412
transport mechanisms ([httpie/httpie-unixsocket](https://github.com/httpie/httpie-unixsocket)),
@@ -2546,7 +2546,7 @@ All changes are recorded in the [change log](#change-log).
25462546
25472547
HTTPie has the following community channels:
25482548
2549-
- [GitHub Issues](https://github.com/httpie/httpie/issues) for bug reports and feature requests
2549+
- [GitHub Issues](https://github.com/httpie/cli/issues) for bug reports and feature requests
25502550
- [Discord server](https://httpie.io/discord) to ask questions, discuss features, and for general API development discussion
25512551
- [StackOverflow](https://stackoverflow.com) to ask questions (make sure to use the [httpie](https://stackoverflow.com/questions/tagged/httpie) tag)
25522552
@@ -2577,25 +2577,25 @@ Helpers to convert from other client tools:
25772577
25782578
### Contributing
25792579
2580-
See [CONTRIBUTING](https://github.com/httpie/httpie/blob/master/CONTRIBUTING.md).
2580+
See [CONTRIBUTING](https://github.com/httpie/cli/blob/master/CONTRIBUTING.md).
25812581
25822582
### Security policy
25832583
2584-
See [github.com/httpie/httpie/security/policy](https://github.com/httpie/httpie/security/policy).
2584+
See [github.com/httpie/cli/security/policy](https://github.com/httpie/cli/security/policy).
25852585
25862586
### Change log
25872587
2588-
See [CHANGELOG](https://github.com/httpie/httpie/blob/master/CHANGELOG.md).
2588+
See [CHANGELOG](https://github.com/httpie/cli/blob/master/CHANGELOG.md).
25892589
25902590
### Artwork
25912591
2592-
- [README Animation](https://github.com/httpie/httpie/blob/master/docs/httpie-animation.gif) by [Allen Smith](https://github.com/loranallensmith).
2592+
- [README Animation](https://github.com/httpie/cli/blob/master/docs/httpie-animation.gif) by [Allen Smith](https://github.com/loranallensmith).
25932593
25942594
### Licence
25952595
2596-
BSD-3-Clause: [LICENSE](https://github.com/httpie/httpie/blob/master/LICENSE).
2596+
BSD-3-Clause: [LICENSE](https://github.com/httpie/cli/blob/master/LICENSE).
25972597
25982598
### Authors
25992599
2600-
[Jakub Roztocil](https://roztocil.co) ([@jakubroztocil](https://twitter.com/jakubroztocil)) created HTTPie and [these fine people](https://github.com/httpie/httpie/blob/master/AUTHORS.md) have contributed.
2600+
[Jakub Roztocil](https://roztocil.co) ([@jakubroztocil](https://twitter.com/jakubroztocil)) created HTTPie and [these fine people](https://github.com/httpie/cli/blob/master/AUTHORS.md) have contributed.
26012601

docs/packaging/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Welcome on the documentation part of the **HTTPie release process**.
44

55
- If you do not know HTTPie, have a look [here](https://httpie.io/cli).
6-
- If you are looking for HTTPie installation or upgrade instructions, then you can find all you need for your OS on [that page](https://httpie.io/docs#installation). In the case you do not find your OS, [let us know](https://github.com/httpie/httpie/issues/).
6+
- If you are looking for HTTPie installation or upgrade instructions, then you can find all you need for your OS on [that page](https://httpie.io/docs#installation). In the case you do not find your OS, [let us know](https://github.com/httpie/cli/issues/).
77
- If you are looking for technical information about the HTTPie packaging, then you are at the good place.
88

99
## About
@@ -25,7 +25,7 @@ The overall release process starts simple:
2525

2626
## Company-specific tasks
2727

28-
- Blank the `master_and_released_docs_differ_after` value in [config.json](https://github.com/httpie/httpie/blob/master/docs/config.json).
28+
- Blank the `master_and_released_docs_differ_after` value in [config.json](https://github.com/httpie/cli/blob/master/docs/config.json).
2929
- Update the [contributors list](../contributors).
3030
- Update the HTTPie version bundled into [Termible](https://termible.io/) ([example](https://github.com/httpie/termible/pull/1)).
3131

@@ -44,4 +44,4 @@ A more complete state of deployment can be found on [repology](https://repology.
4444
| [Snapcraft](snapcraft/) | **HTTPie** |
4545
| [Windows — Chocolatey](windows-chocolatey/) | **HTTPie** |
4646

47-
:new: You do not find your system or you would like to see HTTPie supported on another OS? Then [let us know](https://github.com/httpie/httpie/issues/).
47+
:new: You do not find your system or you would like to see HTTPie supported on another OS? Then [let us know](https://github.com/httpie/cli/issues/).

docs/packaging/brew/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ We will discuss setting up the environment, installing development tools, instal
1313

1414
## Overall process
1515

16-
The brew deployment is completely automated, and only requires a trigger to [`Release on Homebrew`](https://github.com/httpie/httpie/actions/workflows/release-brew.yml) action
16+
The brew deployment is completely automated, and only requires a trigger to [`Release on Homebrew`](https://github.com/httpie/cli/actions/workflows/release-brew.yml) action
1717
from the release manager.
1818

1919
If it is needed to be done manually, the following command can be used:
@@ -26,6 +26,6 @@ which will bump the formula, and create a PR against the package index.
2626

2727
## Hacking
2828

29-
Make your changes, test the formula through the [`Test Brew Package`](https://github.com/httpie/httpie/actions/workflows/test-package-mac-brew.yml) action
29+
Make your changes, test the formula through the [`Test Brew Package`](https://github.com/httpie/cli/actions/workflows/test-package-mac-brew.yml) action
3030
and then finally submit your patch to [`homebrew-core`](https://github.com/Homebrew/homebrew-core`)
3131

docs/packaging/brew/httpie.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class Httpie < Formula
66
url "https://files.pythonhosted.org/packages/32/85/bb095699be20cc98731261cb80884e9458178f8fef2a38273530ce77c0a5/httpie-3.1.0.tar.gz"
77
sha256 "2e4a2040b84a912e65c01fb34f7aafe88cad2a3af2da8c685ca65080f376feda"
88
license "BSD-3-Clause"
9-
head "https://github.com/httpie/httpie.git", branch: "master"
9+
head "https://github.com/httpie/cli.git", branch: "master"
1010

1111
bottle do
1212
sha256 cellar: :any_skip_relocation, arm64_monterey: "9bb6e8c1ef5ba8b019ddedd7e908dd2174da695351aa9a238dfb28b0f57ef005"

0 commit comments

Comments
 (0)