Skip to content

Commit

Permalink
v0.8.6 started; (we may use hxlm-js (#16) + hdplisp (#18) even on pyt…
Browse files Browse the repository at this point in the history
…hon port to do heavy processing of HDPLisp until API be stable
  • Loading branch information
fititnt committed Apr 10, 2021
1 parent 2f60059 commit bd28da2
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 6 deletions.
2 changes: 1 addition & 1 deletion hxlm-js/bootstrapper/hdpb-minimam.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import { HDPbL10n } from './hdpb-l10n.mjs'
import { HDPbLisp } from './lisp/hdpb-lisp.mjs'

class HDPbMiniman {
version = "0.8.5"
version = "0.8.6"
_DEBUG = false

/**
Expand Down
6 changes: 5 additions & 1 deletion hxlm-js/bootstrapper/lisp/datatype.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,8 @@
// https://docs.racket-lang.org/guide/datatypes.html
// Ada:
// Strong data type
// - https://learn.adacore.com/courses/intro-to-ada/chapters/strongly_typed_language.html
// - https://learn.adacore.com/courses/intro-to-ada/chapters/strongly_typed_language.html

// contractum
// - https://wiki.c2.com/?StronglyTyped
// - https://en.wiktionary.org/wiki/contractus#Latin
2 changes: 1 addition & 1 deletion hxlm-js/bootstrapper/lisp/hdpb-lisp.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const isBrowser = typeof window !== 'undefined' && typeof window.document !== 'u


class HDPbLisp {
version = "0.8.5"
version = "0.8.6"


/**
Expand Down
2 changes: 1 addition & 1 deletion hxlm-js/hdplisp-editor-ltr.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ <h2>(draft)</h2>
term.open(document.getElementById('terminal'));
// term.write('Hello from \x1B[1;3;31mxterm.js\x1B[0m $ ')

term.write('HDPLisp v0.8.5\r\n');
term.write('HDPLisp v0.8.6\r\n');
term.write('HDPLisp >');

console.log('term', term)
Expand Down
10 changes: 10 additions & 0 deletions hxlm-js/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "hdp-toolchain",
"version": "0.8.6",
"description": "HDP Declarative Programming (working draft), JavaScript port",
"main": "index.js",
"repository": "https://github.com/EticaAI/HXL-Data-Science-file-formats",
"author": "Emerson Rocha",
"license": "Unlicense",
"private": false
}
2 changes: 1 addition & 1 deletion hxlm/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
# Users need to explicitly call this
# import hxlm.core.compliance

__version__ = "0.8.5"
__version__ = "0.8.6"

# To simplify documentation, we're always load this constant when end users do
# import hxlm as HXLm
Expand Down
1 change: 1 addition & 0 deletions hxlm/core/bin/hdplisp.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// Maybe for short term, we do this? https://github.com/dj51d/setuptools-node
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# - https://en.wikipedia.org/wiki/Toolchain
# name = hxlm-base-eticaai # New temporary name 'hdp-toolchain' on 2021-03-30
name = hdp-toolchain
version = 0.8.5
version = 0.8.6
author = Emerson Rocha
author_email = rocha@ieee.org
description = HDP Declarative Programming (working draft)
Expand Down

0 comments on commit bd28da2

Please sign in to comment.