The ~ selector broken in 1.3.2 but works in nightly and 1.3.1

The ~ selector broken in 1.3.2 but works in nightly and 1.3.1


Hi!
Have been using your library for ages, it is awesome, thank you!
Recently found some issues, that seems to be related to
previousSibling ( "~" ) selector
Can you point me to a place, where it is broken, since i afraid of
using nightly builds in product
Sample markup:
<html>
<head>
<!-- 1.3.2. looks like broken -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/
libs/jquery/1.3.2/jquery.min.js"></script>
<!-- Nightly. works --> <!--
<script type="text/javascript" src="http://code.jquery.com/nightlies/
jquery-nightly.js"></script>
--><!-- 1.3.1. works --><!--
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/
libs/jquery/1.3.1/jquery.min.js"></script>
-->
<script type="text/javascript">
    $(document).ready(function(){
        console.log($('#prev ~ div').length);/*expecting 1, got zero in
1.3.2*/
    });
</script>
</head>
<body>
    <div id="prev">1</div>
    <div>2</div>
</body>
</html>