Skip to content

v2.1

Compare
Choose a tag to compare
@simonhkswan simonhkswan released this 15 Sep 00:25
· 8 commits to main since this release
42d85f6

What's Changed

🧿 Add tabs and update dependencies by @simonhkswan in #16

Added Tabs to allow for expressing multiple ways of achieving something. An example and output is given below:

[tabs]
====
Python::
+
[,python]
----
from synthesized.metadata.value import String
int_meta = Integer(
    name="colA",
    num_rows=100,
    nan_freq=0.1,
    categories=["A", "B", "C"]
)
----
YAML::
+
[,yaml]
----
string:
  - name: "colA"
    num_rows: 100
    nan_freq: 0.1
    categories:
      - "A"
      - "B"
      - "C"
----
====
image

🧿 Tidied up + updated the dependencies in this repo.

  • We have a few extra styling packages in main synthesized docs repo. They've been moved to here so that all the css/styling is in the one repo.
  • Bumped asciidoctor/core from v1.5 -> v2.2

🧿 Added current docs ui features to ui-preview

It's now possible to quickly see all the UI features provided by this repo with a few commands.

$ npm install -g gulp-cli
$ npm install
$ gulp preview
[01:23:18] Using gulpfile ~/docs-ui/gulpfile.js
[01:23:18] Starting 'preview'...
[01:23:18] Starting 'assemble'...
[01:23:18] Finished 'assemble' after 78 ms
[01:23:18] Starting 'build'...
[01:23:18] Starting 'preview:build-pages'...
[01:23:21] Finished 'preview:build-pages' after 2.65 s
[01:23:21] Finished 'build' after 3.12 s
[01:23:21] Starting 'preview:serve'...
[01:23:21] Starting server...
[01:23:21] Server started http://localhost:5252 and http://192.168.8.150:5252
[01:23:21] Running server

You can visit http://localhost:5252 to see a show case of the features.

Full Changelog: v2.0...v2.1