Skip to content

Commit

Permalink
(tool) remove trailing space on NEWS.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cvvergara committed Oct 22, 2024
1 parent 002343b commit f9dd979
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 36 deletions.
35 changes: 0 additions & 35 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,8 @@ milestone for 3.7.0
* ``pgr_primDFS``
* ``pgr_primBFS``


* Standarizing output columns to ``(seq, depth, start_vid, pred, node, edge, cost, agg_cost)``

* Added ``pred`` result columns.


**Experimental promoted to proposed.**

Expand All @@ -53,10 +50,8 @@ milestone for 3.7.0

* ``pgr_lineGraph``


* Promoted to **proposed** signature.
* Works for directed and undirected graphs.


**Code enhancement**

Expand Down Expand Up @@ -167,91 +162,61 @@ milestone for 3.6.0
* [#2547](https://github.com/pgRouting/pgrouting/pull/2547) Standarize output
and modifying signature pgr_KSP


* Result columns standarized to: ``(seq, path_id, path_seq, start_vid, end_vid, node, edge, cost, agg_cost)``
* ``pgr_ksp`` (One to One)

* Added ``start_vid`` and ``end_vid`` result columns.

* New overload functions:

* ``pgr_ksp`` (One to Many)
* ``pgr_ksp`` (Many to One)
* ``pgr_ksp`` (Many to Many)
* ``pgr_ksp`` (Combinations)


* [#2548](https://github.com/pgRouting/pgrouting/pull/2548) Standarize output
pgr_drivingdistance


* Standarizing output columns to ``(seq, depth, start_vid, pred, node, edge, cost, agg_cost)``

* ``pgr_drivingdistance`` (Single vertex)

* Added ``depth`` and ``start_vid`` result columns.

* ``pgr_drivingdistance`` (Multiple vertices)

* Result column name change: ``from_v`` to ``start_vid``.
* Added ``depth`` and ``pred`` result columns.


**Proposed functions changes**

* [#2544](https://github.com/pgRouting/pgrouting/pull/2544) Standarize output
and modifying signature pgr_withPointsDD


* Signature change: ``driving_side`` parameter changed from named optional to
unnamed compulsory **driving side**.

* ``pgr_withPointsDD`` (`Single vertex`)
* ``pgr_withPointsDD`` (`Multiple vertices`)

* Standarizing output columns to ``(seq, depth, start_vid, pred, node, edge, cost, agg_cost)``

* ``pgr_withPointsDD`` (`Single vertex`)

* Added ``depth``, ``pred`` and ``start_vid`` column.

* ``pgr_withPointsDD`` (`Multiple vertices`)

* Added ``depth``, ``pred`` columns.

* When ``details`` is ``false``:

* Only points that are visited are removed, that is, points reached within the
distance are included

* Deprecated signatures

* ``pgr_withpointsdd(text,text,bigint,double precision,boolean,character,boolean)``
* ``pgr_withpointsdd(text,text,anyarray,double precision,boolean,character,boolean,boolean)``


* [#2546](https://github.com/pgRouting/pgrouting/pull/2546) Standarize output
and modifying signature pgr_withPointsKSP


* Standarizing output columns to ``(seq, path_id, path_seq, start_vid, end_vid, node, edge, cost, agg_cost)``
* ``pgr_withPointsKSP`` (One to One)

* Signature change: ``driving_side`` parameter changed from named optional to
unnamed compulsory **driving side**.
* Added ``start_vid`` and ``end_vid`` result columns.

* New overload functions

* ``pgr_withPointsKSP`` (One to Many)
* ``pgr_withPointsKSP`` (Many to One)
* ``pgr_withPointsKSP`` (Many to Many)
* ``pgr_withPointsKSP`` (Combinations)

* Deprecated signature

* ``pgr_withpointsksp(text,text,bigint,bigint,integer,boolean,boolean,char,boolean)``


**C/C++ code enhancements**

Expand Down
2 changes: 1 addition & 1 deletion tools/release-scripts/notes2news.pl
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ sub find_stuff {
next if $line =~ /$mstart/;
$line =~ s/[\|]+//g;
$line =~ s/($check)/$conversions{$1}/go;
print $ofh " $line" if $line !~ /$mend/;
print $ofh " $line" if $line !~ /$mend/ && $line ne "\n";
last if $line =~ /$mend/;
}
close($fh);
Expand Down

0 comments on commit f9dd979

Please sign in to comment.