Skip to content

Commit 20dd77e

Browse files
authored
Remove redundant public declarations (#243)
* Remove redundant public declarations * Increment patch number
1 parent 30a65c6 commit 20dd77e

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

Project.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
name = "Pathfinder"
22
uuid = "b1d3bc72-d0e7-4279-b92f-7fa5d6d2d454"
33
authors = ["Seth Axen <seth.axen@gmail.com> and contributors"]
4-
version = "0.9.15"
4+
version = "0.9.16"
55

66
[deps]
77
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"
8-
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
98
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
109
Folds = "41a02a25-b8f0-4f67-bc48-60067656b558"
1110
IrrationalConstants = "92d709cd-6900-40b7-9082-c6be49f344b6"
@@ -38,7 +37,6 @@ PathfinderTuringExt = ["Accessors", "DynamicPPL", "MCMCChains", "Turing"]
3837
[compat]
3938
ADTypes = "0.2.5, 1"
4039
Accessors = "0.1.12"
41-
Compat = "4.10.0"
4240
Distributions = "0.25.87"
4341
DynamicHMC = "3.4.0"
4442
DynamicPPL = "0.25.2, 0.27, 0.28, 0.29, 0.30, 0.31, 0.32, 0.33, 0.34, 0.35"

src/Pathfinder.jl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
module Pathfinder
22

33
using ADTypes: ADTypes
4-
using Compat: Compat
54
using Distributions: Distributions
65
using Folds: Folds
76
using IrrationalConstants: log2π
@@ -20,12 +19,10 @@ using Statistics: Statistics
2019
using StatsBase: StatsBase
2120
using Transducers: Transducers
2221

22+
# Declare and export the public API
2323
export PathfinderResult, MultiPathfinderResult
2424
export pathfinder, multipathfinder
2525

26-
# Declare the public API
27-
Compat.@compat public pathfinder, multipathfinder, PathfinderResult, MultiPathfinderResult
28-
2926
const DEFAULT_HISTORY_LENGTH = 6
3027
const DEFAULT_LINE_SEARCH = LineSearches.HagerZhang()
3128
const DEFAULT_LINE_SEARCH_INIT = LineSearches.InitialHagerZhang()

0 commit comments

Comments
 (0)