Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v2.1 #823

Closed
4 of 6 tasks
cxxxr opened this issue Jul 8, 2023 · 2 comments
Closed
4 of 6 tasks

Release v2.1 #823

cxxxr opened this issue Jul 8, 2023 · 2 comments
Assignees

Comments

@cxxxr
Copy link
Member

cxxxr commented Jul 8, 2023

  • Relase notes
  • build application
    • apple silicon mac
    • intel mac
    • ubuntu 22.04
    • windows
@cxxxr cxxxr self-assigned this Jul 8, 2023
@aykaramba
Copy link

This is awesome! Just downloaded and compiled. So far, works great!

@cxxxr
Copy link
Member Author

cxxxr commented Jul 11, 2023

(ql:quickload '(:com.inuoe.jzon
                :alexandria))

(defun collect-pullrequests ()
  (let ((text (uiop:run-program 
               "gh pr list -s closed -S \"merged:>=2023-05-22\" -L 1000 --json title,url,author"
               :output :string
               :directory (princ-to-string (ql:where-is-system :lem)))))
    (let ((list-by-authors (make-hash-table :test 'equal)))
      (loop :for item :across (com.inuoe.jzon:parse text)
            :unless (gethash "is_bot" (gethash "author" item))
            :do (let ((url (gethash "url" item))
                      (title (gethash "title" item))
                      (author (gethash "login" (gethash "author" item))))
                  (push (format nil "- ~A~%  ~A~%" title url)
                        (gethash author list-by-authors))))
      (maphash (lambda (author list)
                 (format t "~%`@~A`~%" author)
                 (mapc #'write-string list))
               list-by-authors))))

(collect-pullrequests)

@vindarel

@seanfarley

@Sasanidas

@BierLiebHaber

@cxxxr

@jsparkes

@VitoVan

@Neshamon

@jcs090218

@RadSpaceEd

@theangelperalta

@avitkauskas

@snmsts

@t-sin

@cxxxr cxxxr closed this as completed Jul 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Done
Development

No branches or pull requests

2 participants