Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rust-lang/regex
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.6.0
Choose a base ref
...
head repository: rust-lang/regex
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.7.0
Choose a head ref
  • 10 commits
  • 24 files changed
  • 3 contributors

Commits on Jul 14, 2022

  1. capi: fix 'unused return value' warnings

    Somewhat recently, 'CString::from_raw' got a '#[must_use]' slapped
    on it. Arguably, writing 'drop' around its return value is indeed much
    clearer. So we do that here.
    
    We also do that for 'Box::from_raw' even though it doesn't have a
    '#[must_use]' on it. But the same principle applies.
    
    PR #882
    rhysd authored Jul 14, 2022
    Configuration menu
    Copy the full SHA
    5466076 View commit details
    Browse the repository at this point in the history
  2. ci: switch to dtolnay/rust-toolchain

    The actions-rs/toolchain we were using appears dead:
    actions-rs/toolchain#216
    
    Here's dtolnay's take: https://github.com/dtolnay/rust-toolchain
    
    In particular, it looks like a much more maintainable path here. For
    this one, if it ever goes unmaintained, I can maintain it myself without
    too much fuss.
    
    See also: https://old.reddit.com/r/rust/comments/vyx4oj/actionsrs_organization_became_unmaintained/ig54zv7/
    BurntSushi committed Jul 14, 2022
    Configuration menu
    Copy the full SHA
    67824c7 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2022

  1. readme: re-word usage to remove version number

    We cheat a little bit by leveraging 'cargo add'.
    
    Closes #889
    BurntSushi committed Jul 19, 2022
    Configuration menu
    Copy the full SHA
    fc6f5cc View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2022

  1. doc: add a note about the empty regex

    This improvement is a consequence of the Q&A discussion from
    #896
    
    PR #897
    mrl5 authored Jul 26, 2022
    Configuration menu
    Copy the full SHA
    159a63c View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2022

  1. capi: add 'rlib' crate type

    I didn't realize this was a useful build output for a C library, but I
    guess it is. Namely, it permits it to be built with other rlibs into one
    giant single shared library.
    
    Fixes #909
    BurntSushi committed Oct 5, 2022
    Configuration menu
    Copy the full SHA
    3bac5c8 View commit details
    Browse the repository at this point in the history
  2. rure-0.2.2

    BurntSushi committed Oct 5, 2022
    Configuration menu
    Copy the full SHA
    0d0023e View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2022

  1. syntax: update to Unicode 15

    Closes #916
    BurntSushi committed Nov 5, 2022
    Configuration menu
    Copy the full SHA
    9a18927 View commit details
    Browse the repository at this point in the history
  2. regex-syntax-0.6.28

    BurntSushi committed Nov 5, 2022
    Configuration menu
    Copy the full SHA
    ea3b132 View commit details
    Browse the repository at this point in the history
  3. changelog: 1.7.0

    BurntSushi committed Nov 5, 2022
    Configuration menu
    Copy the full SHA
    ca7b99c View commit details
    Browse the repository at this point in the history
  4. 1.7.0

    BurntSushi committed Nov 5, 2022
    Configuration menu
    Copy the full SHA
    f871a8e View commit details
    Browse the repository at this point in the history
Loading