bump version

This commit is contained in:
figsoda 2023-01-10 20:49:18 -05:00
parent 7cd975f659
commit 7d16f88e0c
3 changed files with 19 additions and 7 deletions

View File

@ -1,5 +1,17 @@
# Changelog
## v0.3.4 - 2023-01-11
### Fixes
- Correctly handle GitLab URLs that point to something other than the root (e.g. issues) of a project without a group
### Features
- Support fetching the latest revision for `fetchFromGitHub`, `fetchFromGitLab`, and `fetchFromGitea`
- Allow hyphen-separated values for `--lisp-sep`
- Recognize `salsa.debian.org` as a GitLab instance
## v0.3.3 - 2023-01-03
### Fixes

10
Cargo.lock generated
View File

@ -323,9 +323,9 @@ dependencies = [
[[package]]
name = "glob"
version = "0.3.0"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
[[package]]
name = "hashbrown"
@ -516,9 +516,9 @@ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
[[package]]
name = "nu-glob"
version = "0.73.0"
version = "0.74.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "611efd57cc139f149eff12415368b819581c0b0e86944bc8011753e5680a674d"
checksum = "378231a732b160ac69cfe44c585f5c09edfe2328f63a24282e7ecf0ee6da6bb4"
[[package]]
name = "num_cpus"
@ -532,7 +532,7 @@ dependencies = [
[[package]]
name = "nurl"
version = "0.3.3"
version = "0.3.4"
dependencies = [
"anyhow",
"assert_cmd",

View File

@ -1,6 +1,6 @@
[package]
name = "nurl"
version = "0.3.3"
version = "0.3.4"
authors = ["figsoda <figsoda@pm.me>"]
edition = "2021"
description = "Generate Nix fetcher calls from repository URLs"
@ -35,7 +35,7 @@ url = "2.3.1"
[dev-dependencies]
assert_cmd = "2.0.8"
nu-glob = "0.73.0"
nu-glob = "0.74.0"
trycmd = "0.14.10"
[profile.release]