Skip to content

Commit

Permalink
user tilde constraintfor HS dependency.
Browse files Browse the repository at this point in the history
https://jubianchi.github.io/semver-check/#/~3.1.5/3.2)

Signed-off-by: Xiaoxi Chen <xiaoxchen@ebay.com>
  • Loading branch information
xiaoxichen committed Apr 19, 2024
1 parent 6ae31e1 commit 0447454
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ Random Access circular buffer. Typically not used directly but levaraged by othe
* libaio-dev (assuming Ubuntu)
* uuid-dev (assuming Ubuntu)

### Versioning
We use modified semantic versioning for this project, <X.Y.Z>
* Bump X for every major release cut by maintainer.
* Bump Y for every incompatible changes.
* Bump Z for others, like compatible api addtion/bug fix.

### Dependencies
* SISL
```
Expand Down
8 changes: 4 additions & 4 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class HomestoreConan(ConanFile):
name = "homestore"
version = "6.3.1"
version = "6.3.2"

homepage = "https://github.com/eBay/Homestore"
description = "HomeStore Storage Engine"
Expand Down Expand Up @@ -55,9 +55,9 @@ def build_requirements(self):
self.build_requires("gtest/1.14.0")

def requirements(self):
self.requires("iomgr/[~=11.2, include_prerelease=True]@oss/master")
self.requires("sisl/[~=12, include_prerelease=True]@oss/master")
self.requires("nuraft_mesg/[~=3.3, include_prerelease=True]@oss/main")
self.requires("iomgr/[~11.2, include_prerelease=True]@oss/master")
self.requires("sisl/[~12.1, include_prerelease=True]@oss/master")
self.requires("nuraft_mesg/[~3.3, include_prerelease=True]@oss/main")

self.requires("farmhash/cci.20190513@")
if self.settings.arch in ['x86', 'x86_64']:
Expand Down

0 comments on commit 0447454

Please sign in to comment.