Skip to content

Commit

Permalink
build(flux): prepare Flux release for v0.184.0 (#5214)
Browse files Browse the repository at this point in the history
  • Loading branch information
skartikey authored Sep 21, 2022
1 parent 6698ad4 commit 41ef75c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion libflux/go/libflux/buildinfo.gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ var sourceHashes = map[string]string{
"stdlib/experimental/aggregate/aggregate.flux": "baed6a789f4db9739ad7699367039973121bbbe694a11cd5bebbe3007b7a4712",
"stdlib/experimental/aggregate/aggregate_test.flux": "dfebbe6d046de66d167c0a6ea97b30436fb6019f27fd68fd4106089cbe9b31fd",
"stdlib/experimental/alignTime_test.flux": "b5cc60a2d67fcf77f0a3c94a90568aa61de8c20364d68d726d21a02b1456edce",
"stdlib/experimental/array/array.flux": "93dd079a9ffcd352179fb155fccfcf0afba4f47f019d41a92506830dc61b4104",
"stdlib/experimental/array/array.flux": "6f78880c2f88954273bdd8b3f0f6013f111d89561032dd846c45338712b2ad2e",
"stdlib/experimental/array/array_test.flux": "5aed9e3e9d872b35235fc3525c270d6d102d12f1fa33e9e408e803f6945475e4",
"stdlib/experimental/bigtable/bigtable.flux": "3dff8e5951fb7b3635406ac175ecd0fd9ce877b58e2f92b6c98f5e8976c0f15f",
"stdlib/experimental/bitwise/bitwise.flux": "ec1f4e358301b06905a4af3d8c5f5f98530bf31a2476f5c3875746f0b22fe6d9",
Expand Down
14 changes: 7 additions & 7 deletions stdlib/experimental/array/array.flux
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ filter = array.filter
// ```
//
// ## Metadata
// introduced: NEXT
// introduced: 0.184.0
// tags: type-conversions
//
toBool = (arr=<-) => array.map(arr: arr, fn: (x) => bool(v: x))
Expand Down Expand Up @@ -199,7 +199,7 @@ toBool = (arr=<-) => array.map(arr: arr, fn: (x) => bool(v: x))
// ```
//
// ## Metadata
// introduced: NEXT
// introduced: 0.184.0
// tags: type-conversions
//
toDuration = (arr=<-) => array.map(arr: arr, fn: (x) => duration(v: x))
Expand Down Expand Up @@ -239,7 +239,7 @@ toDuration = (arr=<-) => array.map(arr: arr, fn: (x) => duration(v: x))
// ```
//
// ## Metadata
// introduced: NEXT
// introduced: 0.184.0
// tags: type-conversions
//
toFloat = (arr=<-) => array.map(arr: arr, fn: (x) => float(v: x))
Expand Down Expand Up @@ -273,7 +273,7 @@ toFloat = (arr=<-) => array.map(arr: arr, fn: (x) => float(v: x))
// ```
//
// ## Metadata
// introduced: NEXT
// introduced: 0.184.0
// tags: type-conversions
//
toInt = (arr=<-) => array.map(arr: arr, fn: (x) => int(v: x))
Expand Down Expand Up @@ -305,7 +305,7 @@ toInt = (arr=<-) => array.map(arr: arr, fn: (x) => int(v: x))
// ```
//
// ## Metadata
// introduced: NEXT
// introduced: 0.184.0
// tags: type-conversions
//
toString = (arr=<-) => array.map(arr: arr, fn: (x) => string(v: x))
Expand Down Expand Up @@ -335,7 +335,7 @@ toString = (arr=<-) => array.map(arr: arr, fn: (x) => string(v: x))
// ```
//
// ## Metadata
// introduced: NEXT
// introduced: 0.184.0
// tags: type-conversions
//
toTime = (arr=<-) => array.map(arr: arr, fn: (x) => time(v: x))
Expand Down Expand Up @@ -369,7 +369,7 @@ toTime = (arr=<-) => array.map(arr: arr, fn: (x) => time(v: x))
// ```
//
// ## Metadata
// introduced: NEXT
// introduced: 0.184.0
// tags: type-conversions
//
toUInt = (arr=<-) => array.map(arr: arr, fn: (x) => uint(v: x))

0 comments on commit 41ef75c

Please sign in to comment.