Skip to content

Commit d9b6084

Browse files
committed
[v0.1a0] Initial Release.
1 parent b663897 commit d9b6084

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

Diff for: README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@ Epoxy is a magical tool for rapid development of GraphQL types, schemas, resolve
77
* **Quick**: Once you create your schema, epoxy doesn't get in the way. Your resolvers will be called directly by
88
`graphql-core` with no additional indirection.
99

10-
This codebase is currently a **WORK IN PROGRESS** and does not currently work. If you're looking for a pythonic
11-
`graphql-core` wrapper, check out [`graphene`](https://github.com/graphql-python/graphene).
10+
This codebase is currently a **WORK IN PROGRESS**, and is currently at alpha stages. The API may change without notice.
11+
If you're looking for a more stable pythonic `graphql-core` wrapper, check out
12+
[`graphene`](https://github.com/graphql-python/graphene).
1213

1314
## Installation
1415

1516
Epoxy is available on pypi under the package name `graphql-epoxy`, you can get it by running:
1617

1718
```sh
18-
pip install graphql-epoxy
19+
pip install graphql-epoxy==0.1a0
1920
```
2021

2122
## Usage
@@ -130,7 +131,7 @@ type Query {
130131

131132
Notice that `epoxy` converted snake_cased fields to camelCase in the GraphQL Schema.
132133

133-
## ObjectTypes become containers (Coming Soon)
134+
## ObjectTypes become containers
134135

135136
You can bring your own objects, (like a Django or SQLAlchemy model), or you can use the class you just created:
136137

Diff for: setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111

1212
setup(
1313
name='graphql-epoxy',
14-
version='0.0.0dev',
14+
version='0.1a0',
1515
description='GraphQL implementation for Python',
1616
url='https://github.com/graphql-python/graphql-core',
1717
download_url='https://github.com/graphql-python/graphql-core/releases',
1818
author='Jake Heinz',
1919
author_email='me' '@' 'jh.gg',
2020
license='MIT',
2121
classifiers=[
22-
'Development Status :: 4 - Beta',
22+
'Development Status :: 3 - Alpha',
2323
'Intended Audience :: Developers',
2424
'Topic :: Software Development :: Libraries',
2525
'Programming Language :: Python :: 2',

0 commit comments

Comments
 (0)