Skip to content

Commit

Permalink
Merge pull request #1 from 40ants/fix-no-token-error
Browse files Browse the repository at this point in the history
Fixed error when accessing GitHub API without setting GITHUB:*TOKEN* first
  • Loading branch information
svetlyak40wt committed Aug 5, 2023
2 parents 5008e4b + 40ba668 commit b46727c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.rst
Expand Up @@ -2,6 +2,11 @@
ChangeLog
===========

1.1.2 (2023-08-05)
==================

* Fixed error when accessing GitHub API without setting GITHUB:*TOKEN* first.

1.1.1 (2022-09-22)
==================

Expand Down
2 changes: 1 addition & 1 deletion src/core.lisp
Expand Up @@ -75,7 +75,7 @@

(defun make-headers (user-headers)
(append
(when *token*
(when (secret-values:ensure-value-revealed *token*)
(list (cons "Authorization"
(concatenate 'string
"token "
Expand Down
2 changes: 1 addition & 1 deletion version.lisp-expr
@@ -1 +1 @@
"1.0.1"
"1.1.2"

0 comments on commit b46727c

Please sign in to comment.