From 6d37638df06e12580aec242c78291ade1321c349 Mon Sep 17 00:00:00 2001 From: John Ed Quinn Date: Wed, 15 Nov 2023 10:09:49 -0800 Subject: [PATCH 01/16] Fixes rendering --- .gitignore | 1 + Gemfile | 3 +- Gemfile.lock | 129 ++++++++++++++++++++++++++++++++++++++++++++ docker-bootstrap.sh | 7 +-- src/main.adoc | 1 + 5 files changed, 137 insertions(+), 4 deletions(-) create mode 100644 Gemfile.lock diff --git a/.gitignore b/.gitignore index d84c9e3..ae90f1c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ /.vscode/ +/.idea/ # build build diff --git a/Gemfile b/Gemfile index 7940997..dbfde8a 100644 --- a/Gemfile +++ b/Gemfile @@ -4,7 +4,8 @@ gem 'rake' gem 'asciidoctor' gem 'asciidoctor-pdf' -gem 'asciidoctor-mathematical' +gem 'mathematical', '1.6.14' +gem 'asciidoctor-mathematical', '0.3.5' gem 'prawn' gem 'prawn-table', github: 'prawnpdf/prawn-table' gem 'prawn-svg' diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..923500f --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,129 @@ +GIT + remote: https://github.com/prawnpdf/prawn-table.git + revision: 38b5bdb5dd95237646675c968091706f57a7a641 + specs: + prawn-table (0.2.3) + prawn (>= 1.3.0, < 3.0.0) + +GEM + remote: https://rubygems.org/ + specs: + Ascii85 (1.1.0) + addressable (2.8.5) + public_suffix (>= 2.0.2, < 6.0) + afm (0.2.2) + asciidoctor (2.0.20) + asciidoctor-mathematical (0.3.5) + asciidoctor (~> 2.0) + asciimath (~> 2.0) + mathematical (~> 1.6.0) + asciidoctor-pdf (2.3.9) + asciidoctor (~> 2.0) + concurrent-ruby (~> 1.1) + matrix (~> 0.4) + prawn (~> 2.4.0) + prawn-icon (~> 3.0.0) + prawn-svg (~> 0.32.0) + prawn-table (~> 0.2.0) + prawn-templates (~> 0.1.0) + treetop (~> 1.6.0) + asciimath (2.0.5) + byebug (11.1.3) + coderay (1.1.3) + concurrent-ruby (1.2.2) + css_parser (1.16.0) + addressable + ffi (1.16.3) + formatador (1.1.0) + guard (2.18.1) + formatador (>= 0.2.4) + listen (>= 2.7, < 4.0) + lumberjack (>= 1.0.12, < 2.0) + nenv (~> 0.1) + notiffany (~> 0.0) + pry (>= 0.13.0) + shellany (~> 0.0) + thor (>= 0.18.1) + guard-compat (1.2.1) + guard-shell (0.7.2) + guard (>= 2.0.0) + guard-compat (~> 1.0) + hashery (2.1.2) + i18n (1.14.1) + concurrent-ruby (~> 1.0) + listen (3.8.0) + rb-fsevent (~> 0.10, >= 0.10.3) + rb-inotify (~> 0.9, >= 0.9.10) + lumberjack (1.2.10) + mathematical (1.6.14) + ruby-enum (~> 0.4) + matrix (0.4.2) + method_source (1.0.0) + nenv (0.3.0) + notiffany (0.1.3) + nenv (~> 0.1) + shellany (~> 0.0) + pdf-core (0.9.0) + pdf-reader (2.11.0) + Ascii85 (~> 1.0) + afm (~> 0.2.1) + hashery (~> 2.0) + ruby-rc4 + ttfunk + polyglot (0.3.5) + prawn (2.4.0) + pdf-core (~> 0.9.0) + ttfunk (~> 1.7) + prawn-icon (3.0.0) + prawn (>= 1.1.0, < 3.0.0) + prawn-svg (0.32.0) + css_parser (~> 1.6) + prawn (>= 0.11.1, < 3) + rexml (~> 3.2) + prawn-templates (0.1.2) + pdf-reader (~> 2.0) + prawn (~> 2.2) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + pry-byebug (3.10.1) + byebug (~> 11.0) + pry (>= 0.13, < 0.15) + public_suffix (5.0.3) + pygments.rb (2.4.1) + rake (13.1.0) + rb-fsevent (0.11.2) + rb-inotify (0.10.1) + ffi (~> 1.0) + rexml (3.2.6) + rghost (0.9.8) + ruby-enum (0.9.0) + i18n + ruby-rc4 (0.1.5) + shellany (0.0.1) + thor (1.3.0) + treetop (1.6.12) + polyglot (~> 0.3) + ttfunk (1.7.0) + +PLATFORMS + x86_64-linux + +DEPENDENCIES + asciidoctor + asciidoctor-mathematical (= 0.3.5) + asciidoctor-pdf + guard + guard-shell + mathematical (= 1.6.14) + prawn + prawn-svg + prawn-table! + pry + pry-byebug + pygments.rb + rake + rghost + +BUNDLED WITH + 2.4.10 diff --git a/docker-bootstrap.sh b/docker-bootstrap.sh index 0a91fe6..013e367 100644 --- a/docker-bootstrap.sh +++ b/docker-bootstrap.sh @@ -2,6 +2,7 @@ set -e BOOTSTRAP_DIR=${HOME}/bootstrap +RUBY_VERSION="3.2.2" # Install rbenv curl -fsSL https://github.com/rbenv/rbenv-installer/raw/HEAD/bin/rbenv-installer | bash @@ -12,8 +13,8 @@ echo 'eval "$(~/.rbenv/bin/rbenv init - zsh)"' >> ~/.zshrc eval "$(~/.rbenv/bin/rbenv init - bash)" # Install latest stable Ruby -rbenv install $(rbenv install -l | grep -v - | tail -1) -rbenv global $(rbenv install -l | grep -v - | tail -1) +rbenv install ${RUBY_VERSION} +rbenv global ${RUBY_VERSION} # Install our required Gems cd ${BOOTSTRAP_DIR} @@ -27,4 +28,4 @@ curl -L -o fonts/iosevka.zip https://github.com/be5invis/Iosevka/releases/downlo unzip fonts/iosevka.zip -d fonts/iosevka # Rake doesn't like the ownership of our workspace in the container -git config --global --add safe.directory /workspace \ No newline at end of file +git config --global --add safe.directory /workspace diff --git a/src/main.adoc b/src/main.adoc index 07eb518..f921e1f 100644 --- a/src/main.adoc +++ b/src/main.adoc @@ -2,6 +2,7 @@ The PartiQL Specification Committee :doctype: book :creator: {author} +:revnumber: 0.1.0 :copyright: Copyright ©2019 Amazon.com Inc. or Affiliates (“Amazon”) :docinfo: :sectnums: From f425216cf8b0d3fabf009bea80519a9289104c95 Mon Sep 17 00:00:00 2001 From: John Ed Quinn Date: Wed, 15 Nov 2023 10:26:10 -0800 Subject: [PATCH 02/16] Adds GH Pages workflow --- .github/workflows/gh-pages.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/gh-pages.yml diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml new file mode 100644 index 0000000..2cfa306 --- /dev/null +++ b/.github/workflows/gh-pages.yml @@ -0,0 +1,32 @@ +## +# Publish HTML to GH Pages +# - Runs the build script. +# - Moves relevant artifacts to publishing directory +# - Moves publishing directory contents to GH pages. +## + +name: Publish to GH Pages + +on: + push: + branches: + - gh-pages-setup # TODO: Change to main + +jobs: + publish: + runs-on: ubuntu-22.04 + steps: + - name: Build using Docker + run: | + ./build-docker.sh + - name: Move to Publish Directory + run: | + mkdir ./publish + mv ./build/PartiQL-Specification.html ./publish/index.html + mv ./build/images ./publish/ + - name: Deploy to GH Pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./publish + From f2b2170e32bddcbcc05ebf48c6770dd1e77f14f7 Mon Sep 17 00:00:00 2001 From: John Ed Quinn Date: Wed, 15 Nov 2023 10:40:01 -0800 Subject: [PATCH 03/16] Minor changes to workflow --- .github/workflows/gh-pages.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 2cfa306..832ff20 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -18,7 +18,8 @@ jobs: steps: - name: Build using Docker run: | - ./build-docker.sh + ls + /bin/bash ./build-docker.sh - name: Move to Publish Directory run: | mkdir ./publish From f3a4329493dda21ed7683fcc69d1a48b87447275 Mon Sep 17 00:00:00 2001 From: John Ed Quinn Date: Wed, 15 Nov 2023 10:43:54 -0800 Subject: [PATCH 04/16] Minor changes to workflow, again --- .github/workflows/gh-pages.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 832ff20..cf7b984 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -16,10 +16,9 @@ jobs: publish: runs-on: ubuntu-22.04 steps: + - run: ls - name: Build using Docker - run: | - ls - /bin/bash ./build-docker.sh + run: /bin/bash ./build-docker.sh - name: Move to Publish Directory run: | mkdir ./publish @@ -30,4 +29,3 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./publish - From 80f3597d054a10bab45e8cd0c81464355bbba044 Mon Sep 17 00:00:00 2001 From: John Ed Quinn Date: Wed, 15 Nov 2023 10:45:49 -0800 Subject: [PATCH 05/16] Minor changes to workflow, again x2 --- .github/workflows/gh-pages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index cf7b984..c74efd2 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -16,6 +16,7 @@ jobs: publish: runs-on: ubuntu-22.04 steps: + - uses: actions/checkout@v3 - run: ls - name: Build using Docker run: /bin/bash ./build-docker.sh From 8249f500763730e20ec524bf45a6d219be53b05b Mon Sep 17 00:00:00 2001 From: John Ed Quinn Date: Wed, 15 Nov 2023 10:59:53 -0800 Subject: [PATCH 06/16] Updates version and build --- build-docker.sh | 2 +- src/main.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build-docker.sh b/build-docker.sh index fb325ad..fcc2546 100755 --- a/build-docker.sh +++ b/build-docker.sh @@ -14,6 +14,6 @@ run_check docker build ${DOCKER_ARGS} -t ${IMAGE_TAG} \ --build-arg GROUP_ID=$(id -g) \ $(pwd) -run_check docker run ${DOCKER_ARGS} -it --rm \ +run_check docker run ${DOCKER_ARGS} --rm \ --mount type=bind,source="$(pwd)",target=/workspace \ ${IMAGE_TAG} /bin/bash --login docker-run.sh "$@" diff --git a/src/main.adoc b/src/main.adoc index f921e1f..ea96be3 100644 --- a/src/main.adoc +++ b/src/main.adoc @@ -2,7 +2,7 @@ The PartiQL Specification Committee :doctype: book :creator: {author} -:revnumber: 0.1.0 +:revnumber: v0.3.0-SNAPSHOT :copyright: Copyright ©2019 Amazon.com Inc. or Affiliates (“Amazon”) :docinfo: :sectnums: From 56770fe9984536cad5ed7cabc524ca0fb07d888d Mon Sep 17 00:00:00 2001 From: John Ed Quinn Date: Wed, 15 Nov 2023 11:32:45 -0800 Subject: [PATCH 07/16] Updates revision information --- src/main.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.adoc b/src/main.adoc index ea96be3..fc28a62 100644 --- a/src/main.adoc +++ b/src/main.adoc @@ -1,8 +1,8 @@ = PartiQL Specification The PartiQL Specification Committee +v0.3, 2023-11-15: PRE-RELEASE :doctype: book :creator: {author} -:revnumber: v0.3.0-SNAPSHOT :copyright: Copyright ©2019 Amazon.com Inc. or Affiliates (“Amazon”) :docinfo: :sectnums: From 65c7d0bec17fd4757f000827a510aacc2f735bb5 Mon Sep 17 00:00:00 2001 From: John Ed Quinn Date: Wed, 15 Nov 2023 14:15:38 -0800 Subject: [PATCH 08/16] Updates versioning method and updates documentation --- Gemfile | 5 +- Gemfile.lock | 129 -------------------------------------------------- README.adoc | 5 +- Rakefile | 6 +-- src/main.adoc | 3 +- 5 files changed, 9 insertions(+), 139 deletions(-) delete mode 100644 Gemfile.lock diff --git a/Gemfile b/Gemfile index dbfde8a..f85d9d4 100644 --- a/Gemfile +++ b/Gemfile @@ -2,10 +2,11 @@ source 'https://rubygems.org' gem 'rake' -gem 'asciidoctor' -gem 'asciidoctor-pdf' +gem 'asciidoctor', '2.0.20' +gem 'asciidoctor-pdf', '2.3.9' gem 'mathematical', '1.6.14' gem 'asciidoctor-mathematical', '0.3.5' + gem 'prawn' gem 'prawn-table', github: 'prawnpdf/prawn-table' gem 'prawn-svg' diff --git a/Gemfile.lock b/Gemfile.lock deleted file mode 100644 index 923500f..0000000 --- a/Gemfile.lock +++ /dev/null @@ -1,129 +0,0 @@ -GIT - remote: https://github.com/prawnpdf/prawn-table.git - revision: 38b5bdb5dd95237646675c968091706f57a7a641 - specs: - prawn-table (0.2.3) - prawn (>= 1.3.0, < 3.0.0) - -GEM - remote: https://rubygems.org/ - specs: - Ascii85 (1.1.0) - addressable (2.8.5) - public_suffix (>= 2.0.2, < 6.0) - afm (0.2.2) - asciidoctor (2.0.20) - asciidoctor-mathematical (0.3.5) - asciidoctor (~> 2.0) - asciimath (~> 2.0) - mathematical (~> 1.6.0) - asciidoctor-pdf (2.3.9) - asciidoctor (~> 2.0) - concurrent-ruby (~> 1.1) - matrix (~> 0.4) - prawn (~> 2.4.0) - prawn-icon (~> 3.0.0) - prawn-svg (~> 0.32.0) - prawn-table (~> 0.2.0) - prawn-templates (~> 0.1.0) - treetop (~> 1.6.0) - asciimath (2.0.5) - byebug (11.1.3) - coderay (1.1.3) - concurrent-ruby (1.2.2) - css_parser (1.16.0) - addressable - ffi (1.16.3) - formatador (1.1.0) - guard (2.18.1) - formatador (>= 0.2.4) - listen (>= 2.7, < 4.0) - lumberjack (>= 1.0.12, < 2.0) - nenv (~> 0.1) - notiffany (~> 0.0) - pry (>= 0.13.0) - shellany (~> 0.0) - thor (>= 0.18.1) - guard-compat (1.2.1) - guard-shell (0.7.2) - guard (>= 2.0.0) - guard-compat (~> 1.0) - hashery (2.1.2) - i18n (1.14.1) - concurrent-ruby (~> 1.0) - listen (3.8.0) - rb-fsevent (~> 0.10, >= 0.10.3) - rb-inotify (~> 0.9, >= 0.9.10) - lumberjack (1.2.10) - mathematical (1.6.14) - ruby-enum (~> 0.4) - matrix (0.4.2) - method_source (1.0.0) - nenv (0.3.0) - notiffany (0.1.3) - nenv (~> 0.1) - shellany (~> 0.0) - pdf-core (0.9.0) - pdf-reader (2.11.0) - Ascii85 (~> 1.0) - afm (~> 0.2.1) - hashery (~> 2.0) - ruby-rc4 - ttfunk - polyglot (0.3.5) - prawn (2.4.0) - pdf-core (~> 0.9.0) - ttfunk (~> 1.7) - prawn-icon (3.0.0) - prawn (>= 1.1.0, < 3.0.0) - prawn-svg (0.32.0) - css_parser (~> 1.6) - prawn (>= 0.11.1, < 3) - rexml (~> 3.2) - prawn-templates (0.1.2) - pdf-reader (~> 2.0) - prawn (~> 2.2) - pry (0.14.2) - coderay (~> 1.1) - method_source (~> 1.0) - pry-byebug (3.10.1) - byebug (~> 11.0) - pry (>= 0.13, < 0.15) - public_suffix (5.0.3) - pygments.rb (2.4.1) - rake (13.1.0) - rb-fsevent (0.11.2) - rb-inotify (0.10.1) - ffi (~> 1.0) - rexml (3.2.6) - rghost (0.9.8) - ruby-enum (0.9.0) - i18n - ruby-rc4 (0.1.5) - shellany (0.0.1) - thor (1.3.0) - treetop (1.6.12) - polyglot (~> 0.3) - ttfunk (1.7.0) - -PLATFORMS - x86_64-linux - -DEPENDENCIES - asciidoctor - asciidoctor-mathematical (= 0.3.5) - asciidoctor-pdf - guard - guard-shell - mathematical (= 1.6.14) - prawn - prawn-svg - prawn-table! - pry - pry-byebug - pygments.rb - rake - rghost - -BUNDLED WITH - 2.4.10 diff --git a/README.adoc b/README.adoc index 0620b60..0d4b1aa 100644 --- a/README.adoc +++ b/README.adoc @@ -140,9 +140,10 @@ To build `HTML` and optimized `PDF` bundle exec rake ``` +=== Releasing +To perform a release, update `revnumber` and remove `revremark` in `src/main.adoc` in a single commit. Once updated, tag the commit. Then, update the `revnumber` and re-add `revremark` accordingly. - -= License +== License This library is licensed under the link:LICENSE[PartiQL Specification License]. diff --git a/Rakefile b/Rakefile index 7b9ec62..deaeb6b 100644 --- a/Rakefile +++ b/Rakefile @@ -1,9 +1,5 @@ -version_string = `git describe --tag | cut -d "-" -f 1,2 | tr - .`.chomp -if version_string.empty? - version_string = '0' -end date_string = Time.now.strftime("%Y-%m-%d") -params = "--attribute revnumber='#{version_string}' --attribute revdate='#{date_string}'" +params = "--attribute revdate='#{date_string}'" image_files = Rake::FileList.new("src/images/*.png", "src/images/*.svg") do |fl| fl.exclude("~*") diff --git a/src/main.adoc b/src/main.adoc index fc28a62..92f2c0c 100644 --- a/src/main.adoc +++ b/src/main.adoc @@ -1,8 +1,9 @@ = PartiQL Specification The PartiQL Specification Committee -v0.3, 2023-11-15: PRE-RELEASE :doctype: book :creator: {author} +:revnumber: v0.3.0-HEAD +:revremark: PRE-RELEASE :copyright: Copyright ©2019 Amazon.com Inc. or Affiliates (“Amazon”) :docinfo: :sectnums: From b7daf88539a4f877af72c436ea6d376c12dbee58 Mon Sep 17 00:00:00 2001 From: John Ed Quinn Date: Wed, 15 Nov 2023 14:16:14 -0800 Subject: [PATCH 09/16] Modifies GH Pages workflow to run on main --- .github/workflows/gh-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index c74efd2..a188672 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -10,7 +10,7 @@ name: Publish to GH Pages on: push: branches: - - gh-pages-setup # TODO: Change to main + - main jobs: publish: From c3f25bb988cc7c05fa11e30ec4a1e8c410eafb87 Mon Sep 17 00:00:00 2001 From: John Ed Quinn Date: Thu, 16 Nov 2023 10:41:19 -0800 Subject: [PATCH 10/16] Adds Section Links/Anchors --- src/main.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.adoc b/src/main.adoc index 92f2c0c..d285d19 100644 --- a/src/main.adoc +++ b/src/main.adoc @@ -7,6 +7,8 @@ The PartiQL Specification Committee :copyright: Copyright ©2019 Amazon.com Inc. or Affiliates (“Amazon”) :docinfo: :sectnums: +:sectanchors: +:sectlinks: :sectnumlevels: 5 :toc: :toclevels: 4 From e7b0eff8e62fa1ac5b3e76be7f77101607c03a34 Mon Sep 17 00:00:00 2001 From: John Ed Quinn Date: Thu, 16 Nov 2023 10:41:59 -0800 Subject: [PATCH 11/16] Updates how we retrieve the current date for publication --- Rakefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index deaeb6b..5ddfb2c 100644 --- a/Rakefile +++ b/Rakefile @@ -1,4 +1,8 @@ -date_string = Time.now.strftime("%Y-%m-%d") +# Attempt to grab the date of the latest commit. If unable to, we use the current date. +date_string = `git log -1 --pretty='format:%cd' --date=format:'%Y-%m-%d'`.chomp +if date_string.empty? + date_string = Time.now.strftime("%Y-%m-%d") +end params = "--attribute revdate='#{date_string}'" image_files = Rake::FileList.new("src/images/*.png", "src/images/*.svg") do |fl| From f85fb67c184c22d3108c676cc5182b7b49b0cdaf Mon Sep 17 00:00:00 2001 From: John Ed Quinn Date: Thu, 16 Nov 2023 10:42:54 -0800 Subject: [PATCH 12/16] Updates to test publish --- .github/workflows/gh-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index a188672..3ef89e7 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -10,7 +10,7 @@ name: Publish to GH Pages on: push: branches: - - main + - gh-pages-setup-test jobs: publish: From 4c67aac25d63b5ac2fbaa797e078d23fd0c7a530 Mon Sep 17 00:00:00 2001 From: John Ed Quinn Date: Thu, 16 Nov 2023 12:10:27 -0800 Subject: [PATCH 13/16] Fails build when unable to grab the latest date. --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 5ddfb2c..99a20fc 100644 --- a/Rakefile +++ b/Rakefile @@ -1,7 +1,7 @@ -# Attempt to grab the date of the latest commit. If unable to, we use the current date. +# Attempt to grab the date of the latest commit. If unable to, fail. date_string = `git log -1 --pretty='format:%cd' --date=format:'%Y-%m-%d'`.chomp if date_string.empty? - date_string = Time.now.strftime("%Y-%m-%d") + raise "Failed to get the date from the latest commit. Do you have access to the Git log?" end params = "--attribute revdate='#{date_string}'" From c6d730aa116b21503bcae47610e960b4306c0307 Mon Sep 17 00:00:00 2001 From: John Ed Quinn Date: Mon, 27 Nov 2023 09:44:38 -0800 Subject: [PATCH 14/16] Updates target gh pages branch for testing --- .github/workflows/gh-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 3ef89e7..a4e32db 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -10,7 +10,7 @@ name: Publish to GH Pages on: push: branches: - - gh-pages-setup-test + - gh-pages-setup jobs: publish: From 11b644ba7595abd28e71e3538c2cdbaff918f8c2 Mon Sep 17 00:00:00 2001 From: John Ed Quinn Date: Mon, 27 Nov 2023 10:02:42 -0800 Subject: [PATCH 15/16] Updates target gh pages branch for production --- .github/workflows/gh-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index a4e32db..a188672 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -10,7 +10,7 @@ name: Publish to GH Pages on: push: branches: - - gh-pages-setup + - main jobs: publish: From 0c17299a78c360c7b22c92980b92784dccdb14ca Mon Sep 17 00:00:00 2001 From: John Ed Quinn Date: Tue, 5 Dec 2023 14:42:33 -0800 Subject: [PATCH 16/16] Adds link to official releases. --- src/main.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.adoc b/src/main.adoc index d285d19..509317d 100644 --- a/src/main.adoc +++ b/src/main.adoc @@ -3,7 +3,8 @@ The PartiQL Specification Committee :doctype: book :creator: {author} :revnumber: v0.3.0-HEAD -:revremark: PRE-RELEASE +:version-label!: +:revremark: PRE-RELEASE. See official releases at https://github.com/partiql/partiql-lang/releases :copyright: Copyright ©2019 Amazon.com Inc. or Affiliates (“Amazon”) :docinfo: :sectnums: