File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 4
4
5
5
LibPQ.jl is a Julia wrapper for the PostgreSQL ` libpq ` [ C library] ( https://www.postgresql.org/docs/current/libpq.html ) .
6
6
7
- [ ![ Stable] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://invenia .github.io/LibPQ.jl/stable/ )
8
- [ ![ In Development] ( https://img.shields.io/badge/docs-dev-blue.svg )] ( https://invenia .github.io/LibPQ.jl/dev/ )
9
- [ ![ Build Status ] ( https://travis-ci .com/invenia /LibPQ.jl. svg?branch=master )] ( https://travis-ci .com/invenia /LibPQ.jl )
10
- [ ![ CodeCov] ( https://codecov.io/gh/invenia /LibPQ.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/invenia /LibPQ.jl )
7
+ [ ![ Stable] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://iamed2 .github.io/LibPQ.jl/stable/ )
8
+ [ ![ In Development] ( https://img.shields.io/badge/docs-dev-blue.svg )] ( https://iamed2 .github.io/LibPQ.jl/dev/ )
9
+ [ ![ CI ] ( https://github .com/iamed2 /LibPQ.jl/actions/workflows/CI.yml/badge. svg )] ( https://github .com/iamed2 /LibPQ.jl/actions/workflows/CI.yml )
10
+ [ ![ CodeCov] ( https://codecov.io/gh/iamed2 /LibPQ.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/iamed2 /LibPQ.jl )
11
11
12
12
## Features
13
13
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ makedocs(;
17
17
" API" => " pages/api.md" ,
18
18
" FAQ" => " pages/faq.md" ,
19
19
],
20
- repo= " https://github.com/invenia /LibPQ.jl/blob/{commit}{path}#L{line}" ,
20
+ repo= " https://github.com/iamed2 /LibPQ.jl/blob/{commit}{path}#L{line}" ,
21
21
sitename= " LibPQ.jl" ,
22
22
checkdocs= :exports ,
23
23
linkcheck= true ,
@@ -27,5 +27,5 @@ makedocs(;
27
27
)
28
28
29
29
deploydocs (;
30
- repo= " github.com/invenia /LibPQ.jl" ,
30
+ repo= " github.com/iamed2 /LibPQ.jl" ,
31
31
)
Original file line number Diff line number Diff line change 4
4
5
5
A Julia wrapper for the PostgreSQL ` libpq ` [ C library] ( https://www.postgresql.org/docs/current/libpq.html ) .
6
6
7
- [ ![ Stable] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://invenia .github.io/LibPQ.jl/stable/ )
8
- [ ![ In Development] ( https://img.shields.io/badge/docs-dev-blue.svg )] ( https://invenia .github.io/LibPQ.jl/dev/ )
9
- [ ![ Build Status ] ( https://travis-ci .com/invenia /LibPQ.jl. svg?branch=master )] ( https://travis-ci .com/invenia /LibPQ.jl )
10
- [ ![ CodeCov] ( https://codecov.io/gh/invenia /LibPQ.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/invenia /LibPQ.jl )
7
+ [ ![ Stable] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://iamed2 .github.io/LibPQ.jl/stable/ )
8
+ [ ![ In Development] ( https://img.shields.io/badge/docs-dev-blue.svg )] ( https://iamed2 .github.io/LibPQ.jl/dev/ )
9
+ [ ![ CI ] ( https://github .com/iamed2 /LibPQ.jl/actions/workflows/CI.yml/badge. svg )] ( https://github .com/iamed2 /LibPQ.jl/actions/workflows/CI.yml )
10
+ [ ![ CodeCov] ( https://codecov.io/gh/iamed2 /LibPQ.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/iamed2 /LibPQ.jl )
11
11
12
12
## Examples
13
13
Original file line number Diff line number Diff line change 235
235
236
236
# Cut off digits after the third after the decimal point,
237
237
# since DateTime in Julia currently handles only milliseconds
238
- # see https://github.com/invenia /LibPQ.jl/issues/33
238
+ # see https://github.com/iamed2 /LibPQ.jl/issues/33
239
239
_trunc_seconds (str) = replace (str, r" (\. [\d ]{3})\d +" => s "\g <1>" )
240
240
241
241
# Utility function for handling "infinity" strings for datetime types to reduce duplication
You can’t perform that action at this time.
0 commit comments