mmottl / postgresql-ocaml

OCaml-bindings for the PostgreSQL database
Other
141 stars 23 forks source link

Broken API-documentation link in README.md #29

Closed joelonsql closed 5 years ago

joelonsql commented 6 years ago

The link by clicking "online" in "The API-documentation can also be found online" goes to http://mmottl.github.io/postgresql-ocaml/api/postgresql which doesn't work.

Where can the API-documentation be found?

abhi18av commented 6 years ago

Still not resolved as of now :)

mmottl commented 6 years ago

Patience, there are still some problems with the latest Dune release tool. Once that's fixed, I'll make a new release, including the API documentation.

abhi18av commented 6 years ago

Thanks @mmottl :)

coursewarefactory commented 5 years ago

Patience, there are still some problems with the latest Dune release tool. Once that's fixed, I'll make a new release, including the API documentation.

Any updates?

mmottl commented 5 years ago

Still no updates, the issue seems to be alive and well in dune-release:

https://github.com/samoht/dune-release/issues/117 https://github.com/samoht/dune-release/issues/114

dbuenzli commented 5 years ago

It seems they are trying to create temporary files in directories which do not exist. You could try to do a mkdir doc && mkdir api before and it suspect it will work.

dbuenzli commented 5 years ago

and if they kept the topkg workflows, you don't have to publish a release to publish the doc, a dune-release distrib && dune-release publish doc should do.

mmottl commented 5 years ago

Thanks, I was aware of the dune-release distrib && dune-release publish doc shortcut. But I'm not sure what to do about the error. The command will check out a fresh gh-pages branch and then apparently delete its api directory without recreating it.

mmottl commented 5 years ago

I've fixed this issue with a patched version of dune-release: https://github.com/samoht/dune-release/pull/136

I hope the patched dune-release will soon become publicly available.