Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
tweak-readme

add back fastparse-byte naming
  • Loading branch information
lihaoyi committed Oct 14, 2017
1 parent c69f43a commit 625c71f
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 1 deletion.
1 change: 1 addition & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ lazy val fastparseByte = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.dependsOn(fastparse)
.settings(
shared,
name := "fastparse-byte",
libraryDependencies += "org.scodec" %%% "scodec-bits" % "1.1.5"
)
.nativeSettings(nativeSettings)
Expand Down
2 changes: 1 addition & 1 deletion project/Constants.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package fastparse
object Constants{
val version = "0.4.4"
val version = "1.0.0"
val scala210 = "2.10.6"
val scala211 = "2.11.11"
val scala212 = "2.12.3"
Expand Down
54 changes: 54 additions & 0 deletions publishSigned.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
#!/usr/bin/env bash
sbt ++2.10.6 \
utilsJS/publishSigned \
utilsJVM/publishSigned \
fastparseJS/publishSigned \
fastparseJVM/publishSigned \
fastparseByteJS/publishSigned \
fastparseByteJVM/publishSigned \
scalaparseJS/publishSigned \
scalaparseJVM/publishSigned \
pythonparseJS/publishSigned \
pythonparseJVM/publishSigned \
cssparseJS/publishSigned \
cssparseJVM/publishSigned \
classparseJS/publishSigned \
classparseJVM/publishSigned
sbt ++2.11.11 \
utilsJS/publishSigned \
utilsJVM/publishSigned \
utilsNative/publishSigned \
fastparseJS/publishSigned \
fastparseJVM/publishSigned \
fastparseNative/publishSigned \
fastparseByteJS/publishSigned \
fastparseByteJVM/publishSigned \
fastparseByteNative/publishSigned \
scalaparseJS/publishSigned \
scalaparseJVM/publishSigned \
scalaparseNative/publishSigned \
pythonparseJS/publishSigned \
pythonparseJVM/publishSigned \
pythonparseNative/publishSigned \
cssparseJS/publishSigned \
cssparseJVM/publishSigned \
cssparseNative/publishSigned \
classparseJS/publishSigned \
classparseJVM/publishSigned
# Doesn't work!
# classparseNative/publishSigned
sbt ++2.12.3 \
utilsJS/publishSigned \
utilsJVM/publishSigned \
fastparseJS/publishSigned \
fastparseJVM/publishSigned \
fastparseByteJS/publishSigned \
fastparseByteJVM/publishSigned \
scalaparseJS/publishSigned \
scalaparseJVM/publishSigned \
pythonparseJS/publishSigned \
pythonparseJVM/publishSigned \
cssparseJS/publishSigned \
cssparseJVM/publishSigned \
classparseJS/publishSigned \
classparseJVM/publishSigned
4 changes: 4 additions & 0 deletions readme/Changelog.scalatex
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
@import Main._
@sect{Change Log}
@sect{1.0.0}
@ul
@li
Published @code{fastparse-byte} for Scala Native.
@sect{0.4.4}
@ul
@li
Expand Down

0 comments on commit 625c71f

Please sign in to comment.