Skip to content

Commit

Permalink
chore: rename to graphql-server and bump version (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
KingDarBoja authored Jul 28, 2020
1 parent cf6d1d4 commit f5e8302
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 17 deletions.
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing

Thanks for helping to make graphql-server-core awesome!
Thanks for helping to make graphql-server awesome!

We welcome all kinds of contributions:

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

## Getting started

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.
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.


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

```console
virtualenv graphql-server-core-dev
virtualenv graphql-server-dev
```

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

```sh
pytest tests --cov=graphql-server-core -vv
pytest tests --cov=graphql-server -vv
```

If you are using Linux or MacOS, you can make use of Makefile command
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<img src="./docs/_static/graphql-server-logo.svg" height="128px">

[![PyPI version](https://badge.fury.io/py/graphql-server-core.svg)](https://badge.fury.io/py/graphql-server-core)
[![Build Status](https://travis-ci.org/graphql-python/graphql-server-core.svg?branch=master)](https://travis-ci.org/graphql-python/graphql-server-core)
[![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)
[![PyPI version](https://badge.fury.io/py/graphql-server.svg)](https://badge.fury.io/py/graphql-server)
[![Coverage Status](https://codecov.io/gh/graphql-python/graphql-server/branch/master/graph/badge.svg)](https://codecov.io/gh/graphql-python/graphql-server)

GraphQL-Server is a base library that serves as a helper
for building GraphQL servers or integrations into existing web frameworks using
Expand Down
2 changes: 1 addition & 1 deletion docs/aiohttp.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Adds GraphQL support to your aiohttp application.

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

`pip install graphql-server-core[aiohttp]`
`pip install graphql-server[aiohttp]`

## Usage

Expand Down
2 changes: 1 addition & 1 deletion docs/flask.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Adds GraphQL support to your Flask application.

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

`pip install graphql-server-core[flask]`
`pip install graphql-server[flask]`

## Usage

Expand Down
2 changes: 1 addition & 1 deletion docs/sanic.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Adds GraphQL support to your Sanic application.

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

`pip install graphql-server-core[sanic]`
`pip install graphql-server[sanic]`

## Usage

Expand Down
2 changes: 1 addition & 1 deletion docs/webob.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Adds GraphQL support to your WebOb (Pyramid, Pylons, ...) application.

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

`pip install graphql-server-core[webob]`
`pip install graphql-server[webob]`

## Usage

Expand Down
4 changes: 2 additions & 2 deletions graphql_server/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""
GraphQL-Server-Core
GraphQL-Server
===================
GraphQL-Server-Core is a base library that serves as a helper
GraphQL-Server is a base library that serves as a helper
for building GraphQL servers or integrations into existing web frameworks using
[GraphQL-Core](https://github.com/graphql-python/graphql-core).
"""
Expand Down
2 changes: 1 addition & 1 deletion graphql_server/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__all__ = ["version", "version_info"]


version = "2.0.0"
version = "3.0.0b1"

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

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@
readme = readme_file.read()

setup(
name="graphql-server-core",
name="graphql-server",
version=version,
description="GraphQL Server tools for powering your server",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/graphql-python/graphql-server-core",
download_url="https://github.com/graphql-python/graphql-server-core/releases",
url="https://github.com/graphql-python/graphql-server",
download_url="https://github.com/graphql-python/graphql-server/releases",
author="Syrus Akbary",
author_email="[email protected]",
license="MIT",
Expand Down

0 comments on commit f5e8302

Please sign in to comment.