golang-github-alecthomas-assert 2.2.1-1 source package in Ubuntu

Changelog

golang-github-alecthomas-assert (2.2.1-1) unstable; urgency=medium

  * New upstream version 2.2.1
  * Bump dependency: golang-github-alecthomas-repr-dev (>= 0.2.0)

 -- Anthony Fok <email address hidden>  Wed, 08 Mar 2023 10:25:22 -0700

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Noble release universe misc
Mantic release universe misc

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-alecthomas-assert_2.2.1-1.dsc 2.4 KiB ced796ac596c6d6abb331c13ab42c115c273eac6f87fd41c43f550818142c2ee
golang-github-alecthomas-assert_2.2.1.orig.tar.gz 7.3 KiB fddf69cf3c70cb5c5e47fa960e3db8112356b53720165011800bd39058613d51
golang-github-alecthomas-assert_2.2.1-1.debian.tar.xz 3.1 KiB a03dce1da23221d6e0c90a420ce0daeff5732eef2d78568e3a4b54a46d37d6e5

Available diffs

No changes file available.

Binary packages built by this source

golang-github-alecthomas-assert-dev: simple assertion library using Go generics

 This library is inspired by testify/require, but with a significantly
 reduced API surface based on empirical use of that package.
 .
 It also provides much nicer diff output, e.g.
 .
   === RUN TestFail
       assert_test.go:14: Expected values to be equal:
            assert.Data{
           - Str: "foo",
           + Str: "far",
              Num: 10,
            }
   --- FAIL: TestFail (0.00s)