Skip to content

Commit

Permalink
fixed circle deploy version, change version to 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MeirShpilraien committed Oct 8, 2018
1 parent 2c4767c commit ed97cd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,9 @@ jobs:
- run:
name: Deploy Releases to S3
command: >-
aws s3 cp /workspace/release/*.zip s3://redismodules/$PACKAGE_NAME/
--acl public-read
for f in /workspace/release/*.zip; do
aws s3 cp $f s3://redismodules/$PACKAGE_NAME/ --acl public-read;
done
deploy_docs:
docker:
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#define REDISEARCH_VERSION_MAJOR 1
#define REDISEARCH_VERSION_MINOR 4
#define REDISEARCH_VERSION_PATCH 0
#define REDISEARCH_VERSION_PATCH 1

#define REDISEARCH_MODULE_VERSION \
(REDISEARCH_VERSION_MAJOR * 10000 + REDISEARCH_VERSION_MINOR * 100 + REDISEARCH_VERSION_PATCH)
Expand Down

0 comments on commit ed97cd9

Please sign in to comment.