Skip to content

Commit 491fc3d

Browse files
authored
Merge pull request #58 from edoardottt/devel
v0.0.10
2 parents 73de26a + 9e6a0bb commit 491fc3d

File tree

7 files changed

+59
-3
lines changed

7 files changed

+59
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ depsdev reqs npm slice-ansi 6.0.0
148148

149149
<br>
150150

151-
Returns the package versions which attest to being created from the specified source code repository.
151+
Returns known mappings between the requested project and package versions.
152152

153153
```console
154154
depsdev packages github.com/eslint/espree

cmd/packages.go

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
3+
depsdev - CLI client for deps.dev API.
4+
Free access to dependencies, licenses, advisories, and other critical health and security signals for open source package versions.
5+
6+
7+
@author: edoardottt, https://www.edoardoottavianelli.it/
8+
9+
@repository: https://github.com/edoardottt/depsdev
10+
11+
@license: https://github.com/edoardottt/depsdev/blob/main/LICENSE
12+
13+
*/
14+
115
package cmd
216

317
import (

cmd/reqs.go

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
3+
depsdev - CLI client for deps.dev API.
4+
Free access to dependencies, licenses, advisories, and other critical health and security signals for open source package versions.
5+
6+
7+
@author: edoardottt, https://www.edoardoottavianelli.it/
8+
9+
@repository: https://github.com/edoardottt/depsdev
10+
11+
@license: https://github.com/edoardottt/depsdev/blob/main/LICENSE
12+
13+
*/
14+
115
package cmd
216

317
import (

pkg/depsdev/api_internal_test.go

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
3+
depsdev - CLI client for deps.dev API.
4+
Free access to dependencies, licenses, advisories, and other critical health and security signals for open source package versions.
5+
6+
7+
@author: edoardottt, https://www.edoardoottavianelli.it/
8+
9+
@repository: https://github.com/edoardottt/depsdev
10+
11+
@license: https://github.com/edoardottt/depsdev/blob/main/LICENSE
12+
13+
*/
14+
115
package depsdev
216

317
import (

pkg/depsdev/requirements.go

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
3+
depsdev - CLI client for deps.dev API.
4+
Free access to dependencies, licenses, advisories, and other critical health and security signals for open source package versions.
5+
6+
7+
@author: edoardottt, https://www.edoardoottavianelli.it/
8+
9+
@repository: https://github.com/edoardottt/depsdev
10+
11+
@license: https://github.com/edoardottt/depsdev/blob/main/LICENSE
12+
13+
*/
14+
115
package depsdev
216

317
type Requirements struct {

pkg/output/banner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ package output
1717
import "fmt"
1818

1919
const (
20-
Version = `0.0.9`
20+
Version = `0.0.10`
2121
Banner = `depsdev v` + Version + `
2222
> https://github.com/edoardottt/depsdev
2323
> @edoardottt, https://www.edoardoottavianelli.it/`

snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ summary: CLI client for deps.dev API
33
description: |
44
CLI client for deps.dev API.
55
Free access to dependencies, licenses, advisories, and other critical health and security signals for open source package versions.
6-
version: 0.0.9
6+
version: 0.0.10
77
grade: stable
88
base: core20
99

0 commit comments

Comments
 (0)