[Gambas-user] [Gambas Bug Tracker] Bug #1321: Converting date to string behavior change between 3.10 and 3.11

bugtracker at gambaswiki.org bugtracker at gambaswiki.org
Wed May 16 23:43:28 CEST 2018


http://gambaswiki.org/bugtracker/edit?object=BUG.1321&from=L21haW4-

Comment #7 by Tobias BOEGE:

A tip: git, as opposed to svn, is really good at letting you figure this stuff out on your own.
First look for commits that reference the function this question is about:

  $ git log --grep=CStr
  commit 1cf354061ce7c3aee6463ce4b7d7115b9c93bb34
  Author: Benoît Minisini <gambas at users.sourceforge.net>
  Date:   Fri Nov 18 14:50:40 2016 +0000

      [INTERPRETER]
      * BUG: Make CStr() and CDate() mutually coherent, by internally converting to UTC dates only.
      
      
      git-svn-id: svn://localhost/gambas/trunk@7983 867c0c6c-44f3-4631-809d-bfa615b0a4ec

That commit 1cf35406 looks like it is the one. Gambas releases map to git tags, so get the first tag
which contains that commit:

  $ git describe --contains 1cf35406
  v3.10.0~168

You see: that change was already in 3.10.0, even 168 commits before 3.10.0 was released.




More information about the User mailing list