Fork me on GitHub
#cljsjs
<
2016-06-11
>
flyboarder18:06:57

when a new package version is released does this package the downloaded files at that time? I ran into an issue where firebase is pushing rc versions to the same tagged release which invalidates that checksum

juhoteperi18:06:24

flyboarder: Yes

flyboarder18:06:44

ok so as long as the checksum is valid at package time it shouldnt matter

juhoteperi18:06:35

But also note that if you are going to release the package in Clojars, you need to either use SNAPSHOT version or increate build identifier

flyboarder18:06:04

yeah i changed the version string to:

juhoteperi18:06:41

Is the library RC or Cljsjs package?

juhoteperi18:06:06

I think there could be "rc" somewhere in the version

flyboarder18:06:28

is -rc3 a valid build for clojars?

flyboarder18:06:10

the actual version is: 3.0.4-rc3 but they are pushing rc increments to the 3.0.4 release

flyboarder18:06:29

so there is only 3.0.4 from bower/github

juhoteperi18:06:39

Sure, Clojars doesn't have any restirctions on version numbers afaik

flyboarder18:06:51

sounds good, will fix

juhoteperi18:06:39

@flyboarder: Also, inline the "rc-version" to +version+. Build scripts are grepping the build.boot to find the version number 😄

juhoteperi18:06:10

(def +lib-version+ "3.0.4") (def +version+ (str +lib-version+ "-rc3"))