Skip to content

Commit

Permalink
Updating for Julia's new Registrator.
Browse files Browse the repository at this point in the history
  • Loading branch information
danspielman committed May 4, 2019
1 parent 8e29cd9 commit af8eae4
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 5 deletions.
21 changes: 21 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name = "Laplacians"
uuid = "6f8e5838-0efe-5de0-80a3-5fb4f8dbb1de"
version = "1.1.0"

[deps]
Arpack = "7d9fca2a-8960-54d3-9f78-7d1dccf2cb97"
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
RandomV06 = "3639840a-3b65-599e-a5e5-6439523e890e"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
SuiteSparse = "4607b0f0-06f3-5cda-b6b1-a6196a1729e9"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
DataStructures = "≥ 0.7.0"
julia = "≥ 0.7.0"
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,11 @@ The documentation may be found by clicking on one of the "docs" links above.

To get the current version of the master branch, run `pkg> add Laplacians#master`

# Version 1.1.0

Changes:

* Updating to use Julia's new Registrator.
* Added `harmonic_interp` to interpolate harmonic functions on graphs. This is the fundamental routine used in Label Propagation / Semi-Supervised Learning on Graphs.
* Added a function `read_graph` to replace `readIJ` and `readIJV`. It is a little more robust.
* Cleaned up `maxflow` so that it now returns a flow and cut as a matrix and set.
Expand Down
5 changes: 0 additions & 5 deletions REQUIRE

This file was deleted.

3 changes: 3 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,11 @@ The algorithms provide by Laplacians.jl include:

To get the current version of the master branch, run `pkg> add Laplacians#master`

# Version 1.1.0

Changes:

* Updating to use Julia's new Registrator.
* Added `harmonic_interp` to interpolate harmonic functions on graphs. This is the fundamental routine used in Label Propagation / Semi-Supervised Learning on Graphs.
* Added a function `read_graph` to replace `readIJ` and `readIJV`. It is a little more robust.
* Cleaned up `maxflow` so that it now returns a flow and cut as a matrix and set.
Expand Down

2 comments on commit af8eae4

@danspielman
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/546

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v1.1.0 -m "<description of version>" af8eae4a75481f504e4734404aedfb095586fe62
git push origin v1.1.0

Please sign in to comment.