Skip to content

Commit 9df6691

Browse files
author
Vincent Bernardoff
committed
prepare release
1 parent c54d239 commit 9df6691

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+10045
-103
lines changed

.jenkins.sh

-17
This file was deleted.

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Generic Makefile for oasis project
77

88
# Set to setup.exe for the release
9-
SETUP := setup-dev.exe
9+
SETUP := setup.exe
1010

1111
# Default rule
1212
default: build

RELEASE.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# How to make a release.
2+
3+
4+
- Bump the relevant version numbers:
5+
- Oasis
6+
- CHANGES
7+
- `sh dist.sh`. It creates a tag and a branch numbered by the version.
8+
- Push **only the tag and not the branch**. You obtain a tag with no branch.
9+
- Let github create a tarball.
10+
- Delete the local branch.
11+
12+
- In [ocsigen.org-data](https://github.com/ocsigen/ocsigen.org-data), copy `tyxml/dev` to the new version number.
13+
- Add the new version in the [download page](http://ocsigen.org/tyxml/install).
14+
15+
- Publish on opam.

_tags

+371
Large diffs are not rendered by default.

configure

+23-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
#!/bin/sh
22

33
# OASIS_START
4-
make configure CONFIGUREFLAGS="$*"
4+
# DO NOT EDIT (digest: dc86c2ad450f91ca10c931b6045d0499)
5+
set -e
6+
7+
FST=true
8+
for i in "$@"; do
9+
if $FST; then
10+
set --
11+
FST=false
12+
fi
13+
14+
case $i in
15+
--*=*)
16+
ARG=${i%%=*}
17+
VAL=${i##*=}
18+
set -- "$@" "$ARG" "$VAL"
19+
;;
20+
*)
21+
set -- "$@" "$i"
22+
;;
23+
esac
24+
done
25+
26+
ocaml setup.ml -configure "$@"
527
# OASIS_STOP

dist.sh

-40
This file was deleted.

lwt-api.odocl

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# OASIS_START
2+
# DO NOT EDIT (digest: ec7c575c209ddf74bc7299feef9302b1)
3+
src/core/Lwt_condition
4+
src/core/Lwt_list
5+
src/core/Lwt
6+
src/core/Lwt_mutex
7+
src/core/Lwt_mvar
8+
src/core/Lwt_pool
9+
src/core/Lwt_sequence
10+
src/core/Lwt_stream
11+
src/core/Lwt_switch
12+
src/core/Lwt_pqueue
13+
src/glib/Lwt_glib
14+
src/preemptive/Lwt_preemptive
15+
src/react/Lwt_react
16+
src/ssl/Lwt_ssl
17+
src/logger/Lwt_log_core
18+
src/logger/Lwt_log_rules
19+
src/unix/Lwt_chan
20+
src/unix/Lwt_daemon
21+
src/unix/Lwt_gc
22+
src/unix/Lwt_io
23+
src/unix/Lwt_log
24+
src/unix/Lwt_main
25+
src/unix/Lwt_process
26+
src/unix/Lwt_throttle
27+
src/unix/Lwt_timeout
28+
src/unix/Lwt_unix
29+
src/unix/Lwt_sys
30+
src/unix/Lwt_engine
31+
src/unix/Lwt_bytes
32+
syntax/Pa_lwt
33+
syntax/Pa_lwt_log
34+
ppx/Ppx_lwt
35+
# OASIS_STOP

0 commit comments

Comments
 (0)