Skip to content

Commit

Permalink
bump to 1.0.0-alpha7
Browse files Browse the repository at this point in the history
  • Loading branch information
HLWeil committed Sep 22, 2023
1 parent 1c6c4fa commit 1f70507
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### 1.0.0+7905959 (Released 2023-9-22)
### 1.0.0+1c6c4fa (Released 2023-9-22)
* Additions:
* Complete overhaul of the API.
* Shifted focus from only ISA to include full ARC.
Expand Down
4 changes: 2 additions & 2 deletions build/ReleaseTasks.fs
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,15 @@ let publishNPM = BuildTask.create "PublishNPM" [clean; build; runTests; packJS]
else failwith "aborted"
}

let publishNPMPrerelease = BuildTask.create "PublishNPMPrerelease" [clean; build; runTests; packJSPrerelease] {
let publishNPMPrerelease = BuildTask.create "PublishNPMPrerelease" [clean; build; (*runTests*) packJSPrerelease] {
let target =
(!! (sprintf "%s/*.tgz" npmPkgDir ))
|> Seq.head
printfn "%A" target
let msg = sprintf "release package with version %s?" prereleaseTag
if promptYesNo msg then
let apikey = Environment.environVarOrNone "NPM_KEY"
let otp = if apikey.IsSome then $" --otp + {apikey.Value}" else ""
let otp = if apikey.IsSome then $" --otp {apikey.Value}" else ""
Fake.JavaScript.Npm.exec $"publish {target} --access public --tag next{otp}" (fun o ->
{ o with
WorkingDirectory = "./dist/js/"
Expand Down
2 changes: 1 addition & 1 deletion build/release_package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nfdi4plants/arctrl",
"version": "1.0.0+7905959",
"version": "1.0.0+1c6c4fa",
"description": "Top level ARC DataModel and API function descriptions.",
"type": "module",
"repository": {
Expand Down
5 changes: 2 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1f70507

Please sign in to comment.