Commit 278d451a authored by Eric Timmons's avatar Eric Timmons
Browse files

Allow specifying a port for HTTP git fetches

parent b084d882
Loading
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
#+TITLE: CLPM Changelog

* v0.0.5 - 2018-12-10
  Allow specifying a port for http.
* v0.0.4 - 2018-12-10
  Allow http for a gitlab method.
* v0.0.3 - 2018-12-02
+4 −0
Original line number Diff line number Diff line
@@ -248,6 +248,8 @@ hostname or NIL."
              (method (if remote-config
                          (gethash "method" remote-config "https")
                          "https"))
              (port (when remote-config
                      (gethash "port" remote-config nil)))
              (path (vcs-project/path project))
              (path-with.git (if (not (ends-with-subseq ".git" path))
                                 (concatenate 'string path ".git")
@@ -270,6 +272,8 @@ hostname or NIL."
            (concatenate 'string
                         "http://"
                         (source/host source)
                         (when port
                           (format nil ":~A" port))
                         "/"
                         path-with.git))))))))

+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@

;; NOTE: If this form changes position in this file you *must* update clpm.asd as
;; well.
(defparameter *version* "0.0.4")
(defparameter *version* "0.0.5")

(defparameter *git-version* "")