Skip to content

Releases: lmrtfy/lmrtfy

v0.0.13

24 Oct 10:19
9e1a414
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.0.12...0.0.13

v0.0.12

18 Oct 06:32
b3682ac
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.0.11...0.0.12

v0.0.11

12 Oct 07:03
dd55b33
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.0.10...0.0.11

v0.0.10

10 Oct 08:14
Compare
Choose a tag to compare

Minor bug fixes

v0.0.9

10 Oct 07:23
a67e21c
Compare
Choose a tag to compare

Changelog:

  • short UUIDs for jobs and profiles
  • examples to use
  • bug fixes
  • revised documentation (structure, content, ...)
  • sharing

v0.0.8

16 Sep 17:25
Compare
Choose a tag to compare
  • added missing dependency in pyproject.toml to allow working package

v0.0.7

16 Sep 16:34
b3a58c5
Compare
Choose a tag to compare

v0.0.7 - 16/sep/2022

  • introduced catalog feature to call 'cloud' functions directly from code.
  • enhanced documentation (API reference, links, quickstart, structure, ...)
  • general bug fixes for better stability

v0.0.6

08 Sep 08:19
Compare
Choose a tag to compare
  • changed input formats for json as follow:
{
  "profile_id": "<profile_id>",
  "job_parameters": {
    "time": 200.0
  },
  "parameter_units" : {
    "time": "s"
  }
}

to

{
  "argument_values": {
    "time": 6.0
  },
  "argument_units" : {
    "time": "s"
  }
}
  • modified readme to match docs
  • added check if job_id is valid UUID

v0.0.5

06 Sep 07:58
5d41893
Compare
Choose a tag to compare
  • included version check
  • changed listener to remove profile collisions

v0.0.4

05 Sep 16:54
2c43d92
Compare
Choose a tag to compare

This is the first working release of lmrtfy.

This creates the following commands:

  • lmrtfy login => get token
  • lmrtfy deploy <script.py> --local=> get profile_id for deployed script profile
  • lmrtfy submit <profile_id> <input.json> => get job_id for submitted job
  • lmrtfy fetch <job_id> <path_to_save> => get results for finished job