Am 13.12.2017 um 13:06 schrieb Mariano Martinez Peck <marianopeck@gmail.com>:

Well, I am enjoying it too even if I still would need more features :)
BTW, how can I update a Pharo 6.1  that came with 0.6.2 to 0.6.5 ? Can I simply run the update script listed here [1] ?   

I use 

<script>
MetacelloPharoPlatform select.
#(
    'BaselineOfTonel'
    'BaselineOfLibGit'
    'BaselineOfIceberg'
    'Iceberg-UI'
    'Iceberg-Plugin-GitHub'
    'Iceberg-Plugin'
    'Iceberg-Metacello-Integration'
    'Iceberg-Libgit-Tonel'
    'Iceberg-Libgit-Filetree'
    'Iceberg-Libgit'
    'Iceberg'
    'LibGit-Core'
    'MonticelloTonel-Tests'
    'MonticelloTonel-Core'
    'MonticelloTonel-FileSystem'
)
do: [ :each | (each asPackageIfAbsent: [ nil ]) ifNotNil: #removeFromSystem ].

latestRelease := ZnClient new
    url: 'https://api.github.com/repos/pharo-vcs/iceberg/releases/latest';
    contentReader: [ :entity | (STON fromString: entity contents) at: 'tag_name'   ];
    get.

Metacello new
      baseline: 'Iceberg';
      repository: 'github://pharo-vcs/iceberg:',latestRelease;
      load.
</script>
Thanks in advance

[1] https://github.com/pharo-vcs/iceberg#for-pharo-6



On Wed, Dec 13, 2017 at 8:42 AM, Norbert Hartl <norbert@hartl.name> wrote:
I just got back from vacation and prepared a new image to work on the current project. Well, I upgraded iceberg to 0.6.5 and everything works like expected. I can see nicely what my colleagues have done while I was away. I can update everything easily. And most important I can do changes and then cherry pick and commit.

So even if people are complaining about missing features (they always do!) I can say that for a basic workflow (for me about 95% of my work) everything seems to be in place. So everyone should feel invited to add the missing pieces.

Well done and thank you,

Norbert




--