Skip to content

Commit

Permalink
depens on ^6.2 HS
Browse files Browse the repository at this point in the history
https://jubianchi.github.io/semver-check/#/^6.2/6.5

Caret constraint

Constraint will be satisfied by versions matching >=6.2.0 <7.0.0-0.
^6.2 is a caret constraint. It means that it will match several versions.

Given the constraint you entered, you will get:

The next minor releases which will provide new features
The next patch releases which will fix bugs
^6.2 is a range constraint. It means that it will match several versions.

Signed-off-by: Xiaoxi Chen <[email protected]>
  • Loading branch information
xiaoxichen committed Apr 18, 2024
1 parent 476fa06 commit 00ab48e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ def build_requirements(self):
self.build_requires("gtest/1.14.0")

def requirements(self):
self.requires("homestore/[>=6.2, include_prerelease=True]@oss/master")
self.requires("sisl/[>=12.1, include_prerelease=True]@oss/master")
self.requires("homestore/[^6.2, include_prerelease=True]@oss/master")
self.requires("sisl/[^12.1, include_prerelease=True]@oss/master")
self.requires("lz4/1.9.4", override=True)

def validate(self):
Expand Down

0 comments on commit 00ab48e

Please sign in to comment.