You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by tu...@apache.org on 2023/04/21 15:03:58 UTC

[arrow-rs] branch master updated: Update regex-syntax requirement from 0.6.27 to 0.7.1 (#4107)

This is an automated email from the ASF dual-hosted git repository.

tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new b04968593 Update regex-syntax requirement from 0.6.27 to 0.7.1 (#4107)
b04968593 is described below

commit b04968593c6ded2138ad8225aec7228225d78676
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Fri Apr 21 11:03:53 2023 -0400

    Update regex-syntax requirement from 0.6.27 to 0.7.1 (#4107)
    
    Updates the requirements on [regex-syntax](https://github.com/rust-lang/regex) to permit the latest version.
    - [Release notes](https://github.com/rust-lang/regex/releases)
    - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/rust-lang/regex/commits)
    
    ---
    updated-dependencies:
    - dependency-name: regex-syntax
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <su...@github.com>
    Co-authored-by: dependabot[bot] <49...@users.noreply.github.com>
---
 arrow-string/Cargo.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arrow-string/Cargo.toml b/arrow-string/Cargo.toml
index f24b17a5c..6e16e0163 100644
--- a/arrow-string/Cargo.toml
+++ b/arrow-string/Cargo.toml
@@ -40,7 +40,7 @@ arrow-schema = { workspace = true }
 arrow-array = { workspace = true }
 arrow-select = { workspace = true }
 regex = { version = "1.7.0", default-features = false, features = ["std", "unicode", "perf"] }
-regex-syntax = { version = "0.6.27", default-features = false, features = ["unicode"] }
+regex-syntax = { version = "0.7.1", default-features = false, features = ["unicode"] }
 
 [package.metadata.docs.rs]
 all-features = true