Skip to content

Commit f633e60

Browse files
authored
Release 0.0.9 (#50)
1 parent 89e34b9 commit f633e60

8 files changed

Lines changed: 17 additions & 14 deletions

File tree

.github/workflows/publish.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
with:
2727
tarantool-version: '2.8'
2828

29+
- run: cmake .
2930
- run: echo "TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV
3031
- run: tarantoolctl rocks new_version --tag $TAG
3132
- run: tarantoolctl rocks make graphqlapi-$TAG-1.rockspec

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.0.9
44

55
- `Fix is_array() not working properly`
66
- `Accept a cdata number as value of a Float variable and forbid NaN and Inf`
@@ -20,6 +20,7 @@
2020
- `Add utils.find() helper`
2121
- `Use cmake build type instead builtin`
2222
- `Add cluster.get_candidates() method`
23+
- `update examples dependencies: graphqlide@0.0.19 -> graphqlide@0.0.21, graphqlapi@0.0.8 -> graphqlapi@0.0.9, graphqlapi-helpers@0.0.8 -> graphqlapi-helpers@0.0.9`
2324

2425
## 0.0.8
2526

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ add_custom_target(lint
5151
)
5252

5353
add_custom_target(test
54+
COMMAND cmake .
5455
COMMAND .rocks/bin/luacheck .
5556
COMMAND rm -f tmp/luacov*
5657
COMMAND .rocks/bin/luatest --verbose --coverage --shuffle group

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Module based on:
1818
- [Tarantool VShard 0.1.19+](https://github.com/tarantool/vshard)
1919
- [Tarantool Checks 3.1.0+](https://github.com/tarantool/checks)
2020
- [Tarantool Errors 2.2.1+](https://github.com/tarantool/errors)
21-
- [Tarantool GraphQLIDE 0.0.20+](https://github.com/tarantool/graphqlide)
21+
- [Tarantool GraphQLIDE 0.0.21+](https://github.com/tarantool/graphqlide)
2222

2323
**CAUTION:** Since this module is under heavy development it is not recommended to use on production environments and also API and functionality in future releases may be changed without backward compatibility!
2424

examples/cartridge-full/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
This Example shows mostly all base capabilities of using the following set of modules:
44

5-
- [Tarantool GraphQLIDE 0.0.20+](https://github.com/tarantool/graphqlide)
6-
- [Tarantool GraphQLAPI 0.0.8+](https://github.com/tarantool/graphqlapi)
7-
- [Tarantool GraphQLAPI Helpers 0.0.8+](https://github.com/tarantool/graphqlapi-helpers) - this particular module available only in Tarantool Enterprise SDK bundle
5+
- [Tarantool GraphQLIDE 0.0.21+](https://github.com/tarantool/graphqlide)
6+
- [Tarantool GraphQLAPI 0.0.9+](https://github.com/tarantool/graphqlapi)
7+
- [Tarantool GraphQLAPI Helpers 0.0.9+](https://github.com/tarantool/graphqlapi-helpers) - this particular module available only in Tarantool Enterprise SDK bundle
88

99
## Quick start
1010

examples/cartridge-full/cartridge.pre-build

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ tarantoolctl rocks remove graphqlide --force
1111
tarantoolctl rocks remove graphqlapi --force
1212
tarantoolctl rocks remove graphqlapi-helpers --force
1313

14-
tarantoolctl rocks install graphqlide 0.0.20
15-
tarantoolctl rocks install graphqlapi 0.0.8
14+
tarantoolctl rocks install graphqlide 0.0.21
15+
tarantoolctl rocks install graphqlapi 0.0.9
1616

17-
GRAPHQLAPI_HELPERS_ROCK="${TARANTOOL_ENTERPRISE}/beta-rocks/graphqlapi-helpers-0.0.8-1.all.rock"
17+
GRAPHQLAPI_HELPERS_ROCK="${TARANTOOL_ENTERPRISE}/beta-rocks/graphqlapi-helpers-0.0.9-1.all.rock"
1818
if [ -f $GRAPHQLAPI_HELPERS_ROCK ]; then
1919
tarantoolctl rocks install "${GRAPHQLAPI_HELPERS_ROCK}"
2020
fi

examples/cartridge-simple/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
This Example shows simple and quite easy way of howto use set of modules in application:
44

5-
- [Tarantool GraphQLIDE 0.0.20+](https://github.com/tarantool/graphqlide)
6-
- [Tarantool GraphQLAPI 0.0.8+](https://github.com/tarantool/graphqlapi)
7-
- [Tarantool GraphQLAPI Helpers 0.0.8+](https://github.com/tarantool/graphqlapi-helpers) - this particular module available only in Tarantool Enterprise SDK bundle
5+
- [Tarantool GraphQLIDE 0.0.21+](https://github.com/tarantool/graphqlide)
6+
- [Tarantool GraphQLAPI 0.0.9+](https://github.com/tarantool/graphqlapi)
7+
- [Tarantool GraphQLAPI Helpers 0.0.9+](https://github.com/tarantool/graphqlapi-helpers) - this particular module available only in Tarantool Enterprise SDK bundle
88

99
## Quick start
1010

examples/cartridge-simple/cartridge.pre-build

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ tarantoolctl rocks remove graphqlide --force
1111
tarantoolctl rocks remove graphqlapi --force
1212
tarantoolctl rocks remove graphqlapi-helpers --force
1313

14-
tarantoolctl rocks install graphqlide 0.0.20
15-
tarantoolctl rocks install graphqlapi 0.0.8
14+
tarantoolctl rocks install graphqlide 0.0.21
15+
tarantoolctl rocks install graphqlapi 0.0.9
1616

17-
GRAPHQLAPI_HELPERS_ROCK="${TARANTOOL_ENTERPRISE}/beta-rocks/graphqlapi-helpers-0.0.8-1.all.rock"
17+
GRAPHQLAPI_HELPERS_ROCK="${TARANTOOL_ENTERPRISE}/beta-rocks/graphqlapi-helpers-0.0.9-1.all.rock"
1818
if [ -f $GRAPHQLAPI_HELPERS_ROCK ]; then
1919
tarantoolctl rocks install "${GRAPHQLAPI_HELPERS_ROCK}"
2020
fi

0 commit comments

Comments
 (0)