rust-semverver

Travis Build Status AppVeyor Build status Current Version

This repository is hosting a proof-of-concept implementation of an automatic tool checking rust library crates for semantic versioning adherence, developed during the Google Summer of Code 2017. The goal is to provide an automated command akin to cargo clippy that analyzes the current crate's source code for changes compared to the most recent version on crates.io.

Details on the work done during GSoC 2017 can be found here.

Background

The approach taken is to compile both versions of the crate to rlibs and to link them as dependencies of a third, empty, dummy crate. Then, a custom compiler driver is run on the said dummy and all necessary analysis is performed in that context, where type information and other resources are available.

More information on the inner workings of the tool can be found here.

Installation

The tool is implemented as a cargo plugin. As of now, it can be obtained from this git repository and compiled from source or installed from crates.io. Keep in mind that only the newest version of the nighly toolchain is supported at any given time.

If you are already using Rust nightly and have successfully installed tools like cargo add and cargo clippy, just do:

sh $ rustup update nightly $ cargo +nightly install semverver

You'd also need cmake for some dependencies, and a few common libraries (if I you hit build failures because of missing system-wide dependencies, please open an issue, so they can be added here).

You can also install the newest version of the tool from git:

sh $ rustup update nightly $ cargo +nightly install --git https://github.com/rust-dev-tools/rust-semverver

Manual installation and more details

```sh

using rustup is recommended

$ rustup update nightly $ rustup default nightly

$ git clone https://github.com/rust-dev-tools/rust-semverver $ cd rust-semverver $ cargo install ```

At this point, the current development version can be invoked using cargo semver in any directory your project resides in. If you prefer not to install to ~/.cargo/bin, you can invoke it like so after building with a regular cargo build:

sh $ PATH=/path/to/repo/target/debug:$PATH cargo semver <args>

If you have built using cargo build --release instead, change the path to point to the release subdirectory of the target directory.

Usage

By default, running cargo semver in directory with a Cargo project will try to compare the local version the one last published on crates.io, and display warnings or errors for all changes found.

Invoking cargo semver -h gives you the latest help message, which outlines how to use the cargo plugin:

```sh $ cargo semver -h usage: cargo semver [options] [-- cargo options]

Options: -h, --help print this message and exit -V, --version print version information and exit -e, --explain print detailed error explanations -d, --debug print command to debug and exit -s, --stable-path PATH use local path as stable/old crate -c, --current-path PATH use local path as current/new crate -S, --stable-pkg NAME:VERSION use a name:version string as stable/old crate -C, --current-pkg NAME:VERSION use a name:version string as current/new crate ```

This means that you can compare any two crates' specified versions, as long as they are available on crates.io or present on your filesystem.

CI setup

Assuming you use a CI provider that gives you access to cargo, you can use the following snippet to check your build for semver compliance, and enforce that version bumps are carried out correctly with regards to the current version of your crate on crates.io:

```sh

install a current version of rust-semverver

cargo install semverver

fetch the version in the manifest of your crate (adapt this to your usecase if needed)

eval "current_version=$(grep -e '^version = .*$' Cargo.toml | cut -d ' ' -f 3)"

run the semver checks and output them for convenience

cargo semver | tee semver_out

fail the build if necessary

(head -n 1 semverout | grep "-> $currentversion") || (echo "versioning mismatch" && return 1) ```

Make sure you do the above with access to a nightly toolchain. Check your CI provider's documentation on how to do that.

Functionality

The guideline used to implement semver compatibility is the API evolution RFC, which applies the principles of semantic versioning to the Rust language's semantics. According to the RFC, most changes are already recognized correctly, even though some type checks still behave incorrectly in edge-cases. A longterm goal is to fix this in the compiler.

At the time of writing, the following types of changes are recognized and classified correctly:

Yet, the results presented to the user are merely an approximation of the required versioning policy, especially at such an early stage of development.