-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ec95ca
commit d4aec40
Showing
8 changed files
with
15 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d4aec40
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@technomancy Something strange happened with this release … the Leiningen version is 2.9.3, but the leiningen-core lib that was included in the release is an older version, 2.9.1.
Now I see that 2.9.2 had the same problem, so perhaps that was the reason for some of the trouble we had with it.
d4aec40
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unfortunately I think that means we need another release …
d4aec40
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you clarify what you mean here? I'm seeing changes from 2.9.3 in the released uberjar.
d4aec40
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I also see most things are as should be. But when you start a REPL, it uses Clojure 1.10.0 instead of 1.10.1. Then when you open the Leiningen standalone JAR you can see that the POM/project.clj reference leiningen-core 2.9.1, where we still had Clojure 1.10.0. I would not expect any references to leiningen-core 2.9.1 in the standalone JAR.
d4aec40
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After executing:
mkdir -p /tmp/lein-jar; cd /tmp/lein-jar; unzip -qo $HOME/.lein/self-installs/leiningen-2.9.3-standalone.jar
grep -IEr '2\.9\.1'
I get :grep -IEr '1\.10\.0'
I get:grep -IEr '1\.10\.1'
I get:@glts Is this what you are referring to?
d4aec40
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nihilismus Yeah. I don't know what the impact is, I just noticed the wrong Clojure version with
lein repl
.d4aec40
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@glts one impact is that bugs in v1.10.0 will affect all Leiningen plugins (since plugins run on the Clojure version depended on by Leiningen itself, rather than that depended on by the project). This has bitten me in at least one instance, described here: noisesmith/lein-git-info-edn#3 This one involves a regression in v1.10.0 involving
(pr-str)
ofjava.util.Date
instances (this worked in earlier versions, and was addressed in v1.10.1).