Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

5.5.15

Compare
Choose a tag to compare
@dylanaraps dylanaraps released this 20 Jul 09:32
· 131 commits to master since this release
7cb2b05
  • MARKERS can now be escaped where they conflict with sources (rare). This didn't require any new code,
    we just pass some extra arguments to fnr. See: 83c88b4

Example:

# Literal source (RELEASE conflicts with package manager)
https://github.com/jedisct1/libsodium/releases/download/1.0.18-RELEASE/libsodium-1.0.18.tar.gz

# Solution (escaping RELEASE)
https://github.com/jedisct1/libsodium/releases/download/1.0.18-\RELEASE/libsodium-1.0.18.tar.gz

# Still works with regular MARKERS
https://github.com/jedisct1/libsodium/releases/download/VERSION-\RELEASE/libsodium-VERSION.tar.gz

# This also works (escaping single marker, substituting others). 
https://example.com/download/RELEASE-\RELEASE/libsodium-RELEASE.tar.gz