Skip to content

Commit f5e8302

Browse files
authored
chore: rename to graphql-server and bump version (#59)
1 parent cf6d1d4 commit f5e8302

File tree

9 files changed

+16
-17
lines changed

9 files changed

+16
-17
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing
22

3-
Thanks for helping to make graphql-server-core awesome!
3+
Thanks for helping to make graphql-server awesome!
44

55
We welcome all kinds of contributions:
66

@@ -12,7 +12,7 @@ We welcome all kinds of contributions:
1212

1313
## Getting started
1414

15-
If you have a specific contribution in mind, be sure to check the [issues](https://github.com/graphql-python/graphql-server-core/issues) and [pull requests](https://github.com/graphql-python/graphql-server-core/pulls) in progress - someone could already be working on something similar and you can help out.
15+
If you have a specific contribution in mind, be sure to check the [issues](https://github.com/graphql-python/graphql-server/issues) and [pull requests](https://github.com/graphql-python/graphql-server/pulls) in progress - someone could already be working on something similar and you can help out.
1616

1717

1818
## Project setup
@@ -22,7 +22,7 @@ If you have a specific contribution in mind, be sure to check the [issues](https
2222
After cloning this repo, create a virtualenv:
2323

2424
```console
25-
virtualenv graphql-server-core-dev
25+
virtualenv graphql-server-dev
2626
```
2727

2828
Activate the virtualenv and install dependencies by running:
@@ -57,7 +57,7 @@ And you ready to start development!
5757
After developing, the full test suite can be evaluated by running:
5858

5959
```sh
60-
pytest tests --cov=graphql-server-core -vv
60+
pytest tests --cov=graphql-server -vv
6161
```
6262

6363
If you are using Linux or MacOS, you can make use of Makefile command

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<img src="./docs/_static/graphql-server-logo.svg" height="128px">
22

3-
[![PyPI version](https://badge.fury.io/py/graphql-server-core.svg)](https://badge.fury.io/py/graphql-server-core)
4-
[![Build Status](https://travis-ci.org/graphql-python/graphql-server-core.svg?branch=master)](https://travis-ci.org/graphql-python/graphql-server-core)
5-
[![Coverage Status](https://codecov.io/gh/graphql-python/graphql-server-core/branch/master/graph/badge.svg)](https://codecov.io/gh/graphql-python/graphql-server-core)
3+
[![PyPI version](https://badge.fury.io/py/graphql-server.svg)](https://badge.fury.io/py/graphql-server)
4+
[![Coverage Status](https://codecov.io/gh/graphql-python/graphql-server/branch/master/graph/badge.svg)](https://codecov.io/gh/graphql-python/graphql-server)
65

76
GraphQL-Server is a base library that serves as a helper
87
for building GraphQL servers or integrations into existing web frameworks using

docs/aiohttp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Adds GraphQL support to your aiohttp application.
66

77
To install the integration with aiohttp, run the below command on your terminal.
88

9-
`pip install graphql-server-core[aiohttp]`
9+
`pip install graphql-server[aiohttp]`
1010

1111
## Usage
1212

docs/flask.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Adds GraphQL support to your Flask application.
66

77
To install the integration with Flask, run the below command on your terminal.
88

9-
`pip install graphql-server-core[flask]`
9+
`pip install graphql-server[flask]`
1010

1111
## Usage
1212

docs/sanic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Adds GraphQL support to your Sanic application.
66

77
To install the integration with Sanic, run the below command on your terminal.
88

9-
`pip install graphql-server-core[sanic]`
9+
`pip install graphql-server[sanic]`
1010

1111
## Usage
1212

docs/webob.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Adds GraphQL support to your WebOb (Pyramid, Pylons, ...) application.
66

77
To install the integration with WebOb, run the below command on your terminal.
88

9-
`pip install graphql-server-core[webob]`
9+
`pip install graphql-server[webob]`
1010

1111
## Usage
1212

graphql_server/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
"""
2-
GraphQL-Server-Core
2+
GraphQL-Server
33
===================
44
5-
GraphQL-Server-Core is a base library that serves as a helper
5+
GraphQL-Server is a base library that serves as a helper
66
for building GraphQL servers or integrations into existing web frameworks using
77
[GraphQL-Core](https://github.com/graphql-python/graphql-core).
88
"""

graphql_server/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
__all__ = ["version", "version_info"]
55

66

7-
version = "2.0.0"
7+
version = "3.0.0b1"
88

99
_re_version = re.compile(r"(\d+)\.(\d+)\.(\d+)(\D*)(\d*)")
1010

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@
5252
readme = readme_file.read()
5353

5454
setup(
55-
name="graphql-server-core",
55+
name="graphql-server",
5656
version=version,
5757
description="GraphQL Server tools for powering your server",
5858
long_description=readme,
5959
long_description_content_type="text/markdown",
60-
url="https://github.com/graphql-python/graphql-server-core",
61-
download_url="https://github.com/graphql-python/graphql-server-core/releases",
60+
url="https://github.com/graphql-python/graphql-server",
61+
download_url="https://github.com/graphql-python/graphql-server/releases",
6262
author="Syrus Akbary",
6363
author_email="me@syrusakbary.com",
6464
license="MIT",

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy