unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#58395] [PATCH 0/2] Update hut to 0.2.0.
@ 2022-10-09 15:58 Dhruvin Gandhi via Guix-patches via
  2022-10-09 16:19 ` [bug#58395] [PATCH 1/2] gnu: go-github-com-spf13-cobra: Update to 1.5.0 Dhruvin Gandhi via Guix-patches via
  0 siblings, 1 reply; 4+ messages in thread
From: Dhruvin Gandhi via Guix-patches via @ 2022-10-09 15:58 UTC (permalink / raw)
  To: 58395; +Cc: Dhruvin Gandhi

While hut 0.1.0 was being reviewed, hut 0.2.0 got released.

Thanks!

Dhruvin Gandhi (2):
  gnu: go-github-com-spf13-cobra: Update to 1.5.0.
  gnu: hut: Update to 0.2.0.

 gnu/packages/golang.scm          | 4 ++--
 gnu/packages/version-control.scm | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

-- 
2.38.0





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#58395] [PATCH 1/2] gnu: go-github-com-spf13-cobra: Update to 1.5.0.
  2022-10-09 15:58 [bug#58395] [PATCH 0/2] Update hut to 0.2.0 Dhruvin Gandhi via Guix-patches via
@ 2022-10-09 16:19 ` Dhruvin Gandhi via Guix-patches via
  2022-10-09 16:19   ` [bug#58395] [PATCH 2/2] gnu: hut: Update to 0.2.0 Dhruvin Gandhi via Guix-patches via
  0 siblings, 1 reply; 4+ messages in thread
From: Dhruvin Gandhi via Guix-patches via @ 2022-10-09 16:19 UTC (permalink / raw)
  To: 58395; +Cc: Dhruvin Gandhi

* gnu/packages/golang.scm (go-github-com-spf13-cobra): Update to 1.5.0.
---
 gnu/packages/golang.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 53d1e38c28..767f2dcd7f 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3630,7 +3630,7 @@ (define-public go-github-com-spf13-cast
 (define-public go-github-com-spf13-cobra
   (package
     (name "go-github-com-spf13-cobra")
-    (version "1.4.0")
+    (version "1.5.0")
     (source
      (origin
        (method git-fetch)
@@ -3640,7 +3640,7 @@ (define-public go-github-com-spf13-cobra
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "0ijhnk9pcks1v1cxri4kf6v1h26ym3jikmkgv4fdfrmm7sqgva13"))))
+         "0qavvyljh509w5xb46lfkak670szp6v4jswwar1hx13cpid8gk5d"))))
     (build-system go-build-system)
     (arguments
      `(#:import-path "github.com/spf13/cobra"))
-- 
2.38.0





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#58395] [PATCH 2/2] gnu: hut: Update to 0.2.0.
  2022-10-09 16:19 ` [bug#58395] [PATCH 1/2] gnu: go-github-com-spf13-cobra: Update to 1.5.0 Dhruvin Gandhi via Guix-patches via
@ 2022-10-09 16:19   ` Dhruvin Gandhi via Guix-patches via
  2022-10-10  4:16     ` bug#58395: [PATCH 0/2] Update hut " Maxim Cournoyer
  0 siblings, 1 reply; 4+ messages in thread
From: Dhruvin Gandhi via Guix-patches via @ 2022-10-09 16:19 UTC (permalink / raw)
  To: 58395; +Cc: Dhruvin Gandhi

* gnu/packages/version-control.scm (hut): Update to 0.2.0.
---
 gnu/packages/version-control.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 25ce7feb81..d8d4a77341 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -3462,7 +3462,7 @@ (define-public gitlint
 (define-public hut
   (package
     (name "hut")
-    (version "0.1.0")
+    (version "0.2.0")
     (source
      (origin
        (method git-fetch)
@@ -3471,7 +3471,7 @@ (define-public hut
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "15ag8fibnahcfgd0w2j4k813z10ymi39rx8d3c8b9955zc62p1fr"))))
+        (base32 "0ybngrwwmkm00dlkdhvkfcvcjhp5xzs8fh90zqr0h12ssqx9pll3"))))
     (build-system go-build-system)
     (arguments
      (list
-- 
2.38.0





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#58395: [PATCH 0/2] Update hut to 0.2.0.
  2022-10-09 16:19   ` [bug#58395] [PATCH 2/2] gnu: hut: Update to 0.2.0 Dhruvin Gandhi via Guix-patches via
@ 2022-10-10  4:16     ` Maxim Cournoyer
  0 siblings, 0 replies; 4+ messages in thread
From: Maxim Cournoyer @ 2022-10-10  4:16 UTC (permalink / raw)
  To: Dhruvin Gandhi; +Cc: 58395-done

Hi,

Dhruvin Gandhi <contact@dhruvin.dev> writes:

> * gnu/packages/version-control.scm (hut): Update to 0.2.0.
> ---
>  gnu/packages/version-control.scm | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
> index 25ce7feb81..d8d4a77341 100644
> --- a/gnu/packages/version-control.scm
> +++ b/gnu/packages/version-control.scm
> @@ -3462,7 +3462,7 @@ (define-public gitlint
>  (define-public hut
>    (package
>      (name "hut")
> -    (version "0.1.0")
> +    (version "0.2.0")
>      (source
>       (origin
>         (method git-fetch)
> @@ -3471,7 +3471,7 @@ (define-public hut
>               (commit (string-append "v" version))))
>         (file-name (git-file-name name version))
>         (sha256
> -        (base32 "15ag8fibnahcfgd0w2j4k813z10ymi39rx8d3c8b9955zc62p1fr"))))
> +        (base32 "0ybngrwwmkm00dlkdhvkfcvcjhp5xzs8fh90zqr0h12ssqx9pll3"))))
>      (build-system go-build-system)
>      (arguments
>       (list

Applied this and the previous one :-).

-- 
Thanks,
Maxim




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-10-10  4:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-09 15:58 [bug#58395] [PATCH 0/2] Update hut to 0.2.0 Dhruvin Gandhi via Guix-patches via
2022-10-09 16:19 ` [bug#58395] [PATCH 1/2] gnu: go-github-com-spf13-cobra: Update to 1.5.0 Dhruvin Gandhi via Guix-patches via
2022-10-09 16:19   ` [bug#58395] [PATCH 2/2] gnu: hut: Update to 0.2.0 Dhruvin Gandhi via Guix-patches via
2022-10-10  4:16     ` bug#58395: [PATCH 0/2] Update hut " Maxim Cournoyer

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).