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 44
55LibPQ.jl is a Julia wrapper for the PostgreSQL ` libpq ` [ C library] ( https://www.postgresql.org/docs/current/libpq.html ) .
66
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 )
1111
1212## Features
1313
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ makedocs(;
1717 " API" => " pages/api.md" ,
1818 " FAQ" => " pages/faq.md" ,
1919 ],
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}" ,
2121 sitename= " LibPQ.jl" ,
2222 checkdocs= :exports ,
2323 linkcheck= true ,
@@ -27,5 +27,5 @@ makedocs(;
2727)
2828
2929deploydocs (;
30- repo= " github.com/invenia /LibPQ.jl" ,
30+ repo= " github.com/iamed2 /LibPQ.jl" ,
3131)
Original file line number Diff line number Diff line change 44
55A Julia wrapper for the PostgreSQL ` libpq ` [ C library] ( https://www.postgresql.org/docs/current/libpq.html ) .
66
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 )
1111
1212## Examples
1313
Original file line number Diff line number Diff line change 235235
236236# Cut off digits after the third after the decimal point,
237237# 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
239239_trunc_seconds (str) = replace (str, r" (\. [\d ]{3})\d +" => s "\g <1>" )
240240
241241# Utility function for handling "infinity" strings for datetime types to reduce duplication
You can’t perform that action at this time.
0 commit comments