This is an automated email from the ASF dual-hosted git repository.

raulcd pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-site.git


The following commit(s) were added to refs/heads/master by this push:
     new 3cfadd77895 MINOR: fix markdown links for Go in v11 post (#310)
3cfadd77895 is described below

commit 3cfadd77895406b79488d13a6fd52fb2e7a85859
Author: Matt Topol <[email protected]>
AuthorDate: Thu Feb 2 11:11:59 2023 -0500

    MINOR: fix markdown links for Go in v11 post (#310)
---
 _posts/2023-01-25-11.0.0-release.md | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/_posts/2023-01-25-11.0.0-release.md 
b/_posts/2023-01-25-11.0.0-release.md
index 770b525e44f..07dadd772ee 100644
--- a/_posts/2023-01-25-11.0.0-release.md
+++ b/_posts/2023-01-25-11.0.0-release.md
@@ -72,28 +72,28 @@ In the C++/Python Flight clients, DoAction now properly 
streams the results, ins
 No major changes to C#.
 
 ## Go notes
-* Go's benchmarks will now get added to [Conbench](https://conbench.ursa.dev) 
alongside the benchmarks for other implementations 
(GH-32983)[https://github.com/apache/arrow/issues/32983]
-* Exposed FlightService_ServiceDesc and RegisterFlightServiceServer to allow 
easily incorporating a flight service into an existing gRPC server 
(GH-15174)[https://github.com/apache/arrow/issues/15174]
+* Go's benchmarks will now get added to [Conbench](https://conbench.ursa.dev) 
alongside the benchmarks for other implementations 
[GH-32983](https://github.com/apache/arrow/issues/32983)
+* Exposed FlightService_ServiceDesc and RegisterFlightServiceServer to allow 
easily incorporating a flight service into an existing gRPC server 
[GH-15174](https://github.com/apache/arrow/issues/15174)
 
 ### Arrow
-* Function `ApproxEquals` was implemented for scalar values 
(GH-29581)[https://github.com/apache/arrow/issues/29581]
-* `UnmarshalJSON` for the `RecordBuilder` now properly handles extra unknown 
fields with complex/nested values 
(GH-31840)[https://github.com/apache/arrow/issues/31840]
-* Decimal128 and Decimal256 type support has been added to the CSV reader 
(GH-33111)[https://github.com/apache/arrow/issues/33111]
-* Fixed bug in `array.UnionBuilder` where `Len` method always returned 0 
(GH-14775)[https://github.com/apache/arrow/issues/14775]
-* Fixed bug for handling slices of Map arrays when marshalling to JSON and for 
IPC (GH-14780)[https://github.com/apache/arrow/issues/14780]
-* Fixed memory leak when compressing IPC message body buffers 
(GH-14883)[https://github.com/apache/arrow/issues/14883]
-* Added the ability to easily append scalar values to array builders 
(GH-15005)[https://github.com/apache/arrow/issues/15005]
+* Function `ApproxEquals` was implemented for scalar values 
[GH-29581](https://github.com/apache/arrow/issues/29581)
+* `UnmarshalJSON` for the `RecordBuilder` now properly handles extra unknown 
fields with complex/nested values 
[GH-31840](https://github.com/apache/arrow/issues/31840)
+* Decimal128 and Decimal256 type support has been added to the CSV reader 
[GH-33111](https://github.com/apache/arrow/issues/33111)
+* Fixed bug in `array.UnionBuilder` where `Len` method always returned 0 
[GH-14775](https://github.com/apache/arrow/issues/14775)
+* Fixed bug for handling slices of Map arrays when marshalling to JSON and for 
IPC [GH-14780](https://github.com/apache/arrow/issues/14780)
+* Fixed memory leak when compressing IPC message body buffers 
[GH-14883](https://github.com/apache/arrow/issues/14883)
+* Added the ability to easily append scalar values to array builders 
[GH-15005](https://github.com/apache/arrow/issues/15005)
 
 #### Compute
-* Scalar binary (add/subtract/multiply/divide/etc.) and unary arithmetic 
(abs/neg/sqrt/sign/etc.) has been implemented for the compute package  
(GH-33086)[https://github.com/apache/arrow/issues/33086] this includes easy 
functions like `compute.Add` and `compute.Divide` etc.
-* Scalar boolean functions like AND/OR/XOR/etc. have been implemented for 
compute (GH-33279)[https://github.com/apache/arrow/issues/33279]
-* Scalar comparison function kernels have been implemented for compute 
(equal/greater/greater_equal/less/less_equal) 
(GH-33308)[https://github.com/apache/arrow/issues/33308]
-* Scalar compute functions are compatible with dictionary encoded arrays by 
casting them to their value types 
(GH-33502)[https://github.com/apache/arrow/issues/33502]
+* Scalar binary (add/subtract/multiply/divide/etc.) and unary arithmetic 
(abs/neg/sqrt/sign/etc.) has been implemented for the compute package 
[GH-33086](https://github.com/apache/arrow/issues/33086) this includes easy 
functions like `compute.Add` and `compute.Divide` etc.
+* Scalar boolean functions like AND/OR/XOR/etc. have been implemented for 
compute [GH-33279](https://github.com/apache/arrow/issues/33279)
+* Scalar comparison function kernels have been implemented for compute 
(equal/greater/greater_equal/less/less_equal) 
[GH-33308](https://github.com/apache/arrow/issues/33308)
+* Scalar compute functions are compatible with dictionary encoded arrays by 
casting them to their value types 
[GH-33502](https://github.com/apache/arrow/issues/33502)
 
 ### Parquet
-* Panic when decoding a delta_bit_packed encoded column has been fixed 
(GH-33483)[https://github.com/apache/arrow/issues/33483]
-* Fixed memory leak from Allocator in `pqarrow.WriteArrowToColumn` 
(GH-14865)[https://github.com/apache/arrow/issues/14865]
-* Fixed `writer.WriteBatch` to properly handle writing encrypted parquet 
columns and no longer silently fail, but instead propagate an error 
(GH-14940)[https://github.com/apache/arrow/issues/14940]
+* Panic when decoding a delta_bit_packed encoded column has been fixed 
[GH-33483](https://github.com/apache/arrow/issues/33483)
+* Fixed memory leak from Allocator in `pqarrow.WriteArrowToColumn` 
[GH-14865](https://github.com/apache/arrow/issues/14865)
+* Fixed `writer.WriteBatch` to properly handle writing encrypted parquet 
columns and no longer silently fail, but instead propagate an error 
[GH-14940](https://github.com/apache/arrow/issues/14940)
 
 ## Java notes
 * Implement support for writing compressed files 
([#15223](https://github.com/apache/arrow/pull/15223))
@@ -209,4 +209,4 @@ implementation, see the latest [Arrow Rust changelog][5].
 [2]: {{ site.baseurl }}/release/11.0.0.html#contributors
 [3]: {{ site.baseurl }}/release/11.0.0.html#changelog
 [4]: {{ site.baseurl }}/docs/r/news/
-[5]: https://github.com/apache/arrow-rs/tags
\ No newline at end of file
+[5]: https://github.com/apache/arrow-rs/tags

Reply via email to