Skip to content

Commit

Permalink
chore(main): release 0.1.0 (#26)
Browse files Browse the repository at this point in the history
🤖 I have created a release *beep* *boop*
---


## 0.1.0 (2024-10-25)


### Features

* add all public methods from Redis class
([f05ff8e](f05ff8e))
* add all public methods from Redis class
([#2](#2))
([56fc24b](56fc24b))
* add examples for implemented methods
([#18](#18))
([b682513](b682513))
* add github workflow
([#4](#4))
([465bfa4](465bfa4))
* add release-please workflow
([#16](#16))
([5d1b481](5d1b481))
* add zadd and zrevrange implementations
([58f51ee](58f51ee))
* add zincrby method
([#9](#9))
([53920a3](53920a3))
* add zrevrangebyscore method
([#14](#14))
([e228ab7](e228ab7))
* add zscore
([#11](#11))
([28e88ba](28e88ba))
* address comment feedback
([f552524](f552524))
* implement MomentoRedisClient
([aedb386](aedb386))
* implement scalar methods
([#3](#3))
([e64ddfc](e64ddfc))
* implement ttl and expire methods
([#5](#5))
([810bb18](810bb18))
* implement zcount
([#15](#15))
([5b2aacd](5b2aacd))
* implement zunionstore
([#20](#20))
([8394e46](8394e46))
* initial commit
([0da590b](0da590b))
* set up readme generation
([#22](#22))
([59aff79](59aff79))
* sophisticated test setup
([5d9624b](5d9624b))
* support zrem command
([#13](#13))
([af130a8](af130a8))
* use released sdk
([#23](#23))
([bec0995](bec0995))


### Bug Fixes

* add zincrby method to interface
([#12](#12))
([da084c0](da084c0))
* configure monolog logger
([25fec3c](25fec3c))
* export env instead of .env file
([#21](#21))
([ceae953](ceae953))
* make monolog a dev dependency
([1b21256](1b21256))
* remove debugging statements
([8ea5d9a](8ea5d9a))
* remove lint step from push-to-main workflow
([#25](#25))
([c0a4bea](c0a4bea))
* rename package in composer.json
([#19](#19))
([a50b2b7](a50b2b7))
* unbounded case for zrevrange
([6f2785a](6f2785a))
* update readme
([ce526b7](ce526b7))


### Miscellaneous

* adds makefile
([6a10961](6a10961))
* backfill interface methods
([#10](#10))
([6c135c2](6c135c2))
* exhaustive checks for methods
([d35945a](d35945a))
* exhaustive checks for methods
([#7](#7))
([79139ef](79139ef))
* set release version to 0.1.0
([#27](#27))
([4462c3d](4462c3d))
* update composer description
([#24](#24))
([c5a83f3](c5a83f3))
* Update the readme language to comply with the PHP license
([#17](#17))
([9aa377f](9aa377f))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
  • Loading branch information
1 parent 4462c3d commit 9484f3a
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Changelog

## 0.1.0 (2024-10-25)


### Features

* add all public methods from Redis class ([f05ff8e](https://github.com/momentohq/momento-php-redis-client/commit/f05ff8ea86698c4f4707d8d09320ca9eb1ac9998))
* add all public methods from Redis class ([#2](https://github.com/momentohq/momento-php-redis-client/issues/2)) ([56fc24b](https://github.com/momentohq/momento-php-redis-client/commit/56fc24b0bbb00645b1b7ff58692906e6e5488b21))
* add examples for implemented methods ([#18](https://github.com/momentohq/momento-php-redis-client/issues/18)) ([b682513](https://github.com/momentohq/momento-php-redis-client/commit/b6825137bddf14bc7a6136a9cb6c562dd76a5677))
* add github workflow ([#4](https://github.com/momentohq/momento-php-redis-client/issues/4)) ([465bfa4](https://github.com/momentohq/momento-php-redis-client/commit/465bfa426310df362b6719d626a2c86cb294f0ad))
* add release-please workflow ([#16](https://github.com/momentohq/momento-php-redis-client/issues/16)) ([5d1b481](https://github.com/momentohq/momento-php-redis-client/commit/5d1b481c0e904e960026ffe7a0448ad990ffc131))
* add zadd and zrevrange implementations ([58f51ee](https://github.com/momentohq/momento-php-redis-client/commit/58f51ee8535e576dc29a538949d237147e54cb7c))
* add zincrby method ([#9](https://github.com/momentohq/momento-php-redis-client/issues/9)) ([53920a3](https://github.com/momentohq/momento-php-redis-client/commit/53920a362c989e9d569eb1e18508a71d73bd0c3d))
* add zrevrangebyscore method ([#14](https://github.com/momentohq/momento-php-redis-client/issues/14)) ([e228ab7](https://github.com/momentohq/momento-php-redis-client/commit/e228ab7f117b50194019e5668920ec9ee1d38199))
* add zscore ([#11](https://github.com/momentohq/momento-php-redis-client/issues/11)) ([28e88ba](https://github.com/momentohq/momento-php-redis-client/commit/28e88baf6cb7266149343ef240c8cad0a81fd0f6))
* address comment feedback ([f552524](https://github.com/momentohq/momento-php-redis-client/commit/f5525248fb6d5c0cf4fa66591c96478c71c8cc10))
* implement MomentoRedisClient ([aedb386](https://github.com/momentohq/momento-php-redis-client/commit/aedb38604e4a02351f003040329619c4fd1d6b3c))
* implement scalar methods ([#3](https://github.com/momentohq/momento-php-redis-client/issues/3)) ([e64ddfc](https://github.com/momentohq/momento-php-redis-client/commit/e64ddfc7ccc0aad00c39feb24c27c25f2dbad392))
* implement ttl and expire methods ([#5](https://github.com/momentohq/momento-php-redis-client/issues/5)) ([810bb18](https://github.com/momentohq/momento-php-redis-client/commit/810bb18081f2adbf4718a4ed156d5495ebd4d190))
* implement zcount ([#15](https://github.com/momentohq/momento-php-redis-client/issues/15)) ([5b2aacd](https://github.com/momentohq/momento-php-redis-client/commit/5b2aacdd60e60a3e9ef62a230bb73eb6dfc0a82f))
* implement zunionstore ([#20](https://github.com/momentohq/momento-php-redis-client/issues/20)) ([8394e46](https://github.com/momentohq/momento-php-redis-client/commit/8394e4601a0ab347788250f414d7dd21b064ae83))
* initial commit ([0da590b](https://github.com/momentohq/momento-php-redis-client/commit/0da590b37fbe8dc46407fd727b84898c1e7d91fb))
* set up readme generation ([#22](https://github.com/momentohq/momento-php-redis-client/issues/22)) ([59aff79](https://github.com/momentohq/momento-php-redis-client/commit/59aff798ab9deb7ea9893262f6dbf2114bf75a0b))
* sophisticated test setup ([5d9624b](https://github.com/momentohq/momento-php-redis-client/commit/5d9624b90055731e29d7d9a339fdf0bc341e6d4d))
* support zrem command ([#13](https://github.com/momentohq/momento-php-redis-client/issues/13)) ([af130a8](https://github.com/momentohq/momento-php-redis-client/commit/af130a86ef45ff07994d2c2f0f7f8287f9ffbd11))
* use released sdk ([#23](https://github.com/momentohq/momento-php-redis-client/issues/23)) ([bec0995](https://github.com/momentohq/momento-php-redis-client/commit/bec099556325687e3db384c83bb19a5f1d480c34))


### Bug Fixes

* add zincrby method to interface ([#12](https://github.com/momentohq/momento-php-redis-client/issues/12)) ([da084c0](https://github.com/momentohq/momento-php-redis-client/commit/da084c09db418fae433de0db459ff8653110c4dd))
* configure monolog logger ([25fec3c](https://github.com/momentohq/momento-php-redis-client/commit/25fec3c9446e9241d16c467a328cbed373226cc8))
* export env instead of .env file ([#21](https://github.com/momentohq/momento-php-redis-client/issues/21)) ([ceae953](https://github.com/momentohq/momento-php-redis-client/commit/ceae953986bfa6697cde5742e2a5cf927b8f6b61))
* make monolog a dev dependency ([1b21256](https://github.com/momentohq/momento-php-redis-client/commit/1b212566062c4d8a8c8372b523919148bddf311c))
* remove debugging statements ([8ea5d9a](https://github.com/momentohq/momento-php-redis-client/commit/8ea5d9ae147b1f63dc47d04564cf411b2d11ad4d))
* remove lint step from push-to-main workflow ([#25](https://github.com/momentohq/momento-php-redis-client/issues/25)) ([c0a4bea](https://github.com/momentohq/momento-php-redis-client/commit/c0a4bea0b2b14aedebcf292d879114c5dd629392))
* rename package in composer.json ([#19](https://github.com/momentohq/momento-php-redis-client/issues/19)) ([a50b2b7](https://github.com/momentohq/momento-php-redis-client/commit/a50b2b709057bc9bbd1927b16f4f06d33a7169e8))
* unbounded case for zrevrange ([6f2785a](https://github.com/momentohq/momento-php-redis-client/commit/6f2785a76901015560c42bf4a1eb384a5b82e7cd))
* update readme ([ce526b7](https://github.com/momentohq/momento-php-redis-client/commit/ce526b71c77142b3cd40b1bf38b7e78df64acd9e))


### Miscellaneous

* adds makefile ([6a10961](https://github.com/momentohq/momento-php-redis-client/commit/6a109614913117299388ce7eb38d2a5ebd0ba601))
* backfill interface methods ([#10](https://github.com/momentohq/momento-php-redis-client/issues/10)) ([6c135c2](https://github.com/momentohq/momento-php-redis-client/commit/6c135c27ab428228b17945520b9286dc9e6a0390))
* exhaustive checks for methods ([d35945a](https://github.com/momentohq/momento-php-redis-client/commit/d35945a10c53c98bc5e6b664f8bce503d0fbf034))
* exhaustive checks for methods ([#7](https://github.com/momentohq/momento-php-redis-client/issues/7)) ([79139ef](https://github.com/momentohq/momento-php-redis-client/commit/79139efb587376ff207fa63c4274a38cc4c3c76c))
* set release version to 0.1.0 ([#27](https://github.com/momentohq/momento-php-redis-client/issues/27)) ([4462c3d](https://github.com/momentohq/momento-php-redis-client/commit/4462c3d41290fe2440aacceb94f49f4234cebff6))
* update composer description ([#24](https://github.com/momentohq/momento-php-redis-client/issues/24)) ([c5a83f3](https://github.com/momentohq/momento-php-redis-client/commit/c5a83f32a496e68067f1f732310d68adde2c19d2))
* Update the readme language to comply with the PHP license ([#17](https://github.com/momentohq/momento-php-redis-client/issues/17)) ([9aa377f](https://github.com/momentohq/momento-php-redis-client/commit/9aa377f7c187f6b6f20cd101ff3ff4582b29c887))

0 comments on commit 9484f3a

Please sign in to comment.