Changeset 2411


Ignore:
Timestamp:
Jan 13, 2011, 3:39:02 AM (12 years ago)
Author:
Peter
Message:

merge patch release 0.7.1 into trunk

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/NEWS

    r2400 r2411  
    1010
    1111yat 0.7.x series from http://dev.thep.lu.se/yat/svn/branches/0.7-stable
     12
     13version 0.7.1 (released 13 January 2011)
     14  - Fixed compiler (gcc 3) error in Histogram.cc (issue #649)
     15  - Fixed compiler warning in concept_check.h (issue #648)
     16
     17  A complete list of closed tickets can be found here [[br]]
     18  http://dev.thep.lu.se/yat/query?status=closed&milestone=yat+0.7.1
     19
    1220
    1321version 0.7 (released 8 January 2011)
  • trunk/m4/version.m4

    r2400 r2411  
    2828m4_define([MINOR_VERSION], [8])
    2929# PATCH - Modify for every released patch
    30 m4_define([PATCH_VERSION], [0])
     30m4_define([PATCH_VERSION], [1])
    3131
    3232# DEV_BUILD - When rolling a tarball we set this to `false'. In
     
    6666# yat-0.6.3  3:3:0
    6767# yat-0.7.0  4:0:0
     68# yat-0.7.1  4:1:0
    6869#
    6970# *Accidently, the libtool number was not updated for yat 0.5
  • trunk/yat/statistics/Histogram.cc

    r2384 r2411  
    66  Copyright (C) 2006 Jari Häkkinen
    77  Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson
    8   Copyright (C) 2009, 2010 Peter Johansson
     8  Copyright (C) 2009, 2010, 2011 Peter Johansson
    99
    1010  This file is part of the yat library, http://dev.thep.lu.se/yat
     
    6666    getline(is, line, '\n');
    6767    std::vector<std::vector<double> > data;
    68     utility::load(is, data);
     68    utility::load(is, data, '\0', '\n');
    6969    for (size_t i=0; i<histogram_.size(); ++i) {
    7070      assert(data[i].size()==2);
  • trunk/yat/utility/concept_check.h

    r2340 r2411  
    55
    66/*
    7   Copyright (C) 2010 Peter Johansson
     7  Copyright (C) 2010, 2011 Peter Johansson
    88
    99  This file is part of the yat library, http://dev.thep.lu.se/yat
     
    5454  {
    5555  public:
     56    /// Default constructor
     57    Container2D(void) {}
     58
    5659    /// value_type
    5760    typedef typename T::value_type value_type;
Note: See TracChangeset for help on using the changeset viewer.